MySQL- tutoriaal

MySQL TUIS MySQL-inleiding MySQL RDBMS

MySQL SQL

MySQL SQL MySQL KIES MySQL WAAR MySQL EN, OF, NIE MySQL BESTEL DEUR MySQL VOEG IN MySQL NULL-waardes MySQL-OPDATERING MySQL SKEE MySQL-LIMIET MySQL MIN en MAX MySQL COUNT, AVG, SUM MySQL LIKE MySQL Wildcards MySQL IN MySQL TUSSEN MySQL aliasse MySQL sluit aan MySQL BINNE SLUIT AAN MySQL LOS LINKS AAN MySQL REGS SLUIT AAN MySQL KRUIS SLUIT AAN MySQL Self Sluit aan MySQL UNIE MySQL GROEP DEUR MySQL HET MySQL BESTAAN MySQL ENIGE, ALMAL MySQL INSERT SELECT MySQL-GEVAL MySQL nul-funksies MySQL-kommentaar MySQL-operateurs

MySQL- databasis

MySQL Skep DB MySQL Drop DB MySQL Skep tabel MySQL Drop Table MySQL Verander Tabel MySQL-beperkings MySQL nie nul nie MySQL Uniek MySQL-primêre sleutel MySQL buitelandse sleutel MySQL-tjek MySQL verstek MySQL Skep indeks MySQL Outo-verhoging MySQL-datums MySQL-aansigte

MySQL- verwysings

MySQL-datatipes MySQL-funksies

MySQL voorbeelde

MySQL voorbeelde MySQL Vasvra MySQL-oefeninge

MySQL aliasse


MySQL aliasse

Aliases word gebruik om 'n tabel, of 'n kolom in 'n tabel, 'n tydelike naam te gee.

Aliases word dikwels gebruik om kolomname meer leesbaar te maak.

'n Alias ​​bestaan ​​net vir die duur van daardie navraag.

'n Alias ​​word geskep met die ASsleutelwoord.

Alias ​​Kolom Sintaksis

SELECT column_name AS alias_name
FROM table_name;

Alias ​​Tabel Sintaksis

SELECT column_name(s)
FROM table_name AS alias_name;

Demo databasis

In hierdie tutoriaal sal ons die bekende Northwind-voorbeelddatabasis gebruik.

Hieronder is 'n keuse uit die "Klante"-tabel:

CustomerID CustomerName ContactName Address City PostalCode Country
2 Ana Trujillo Emparedados y helados Ana Trujillo Avda. de la Constitución 2222 México D.F. 05021 Mexico
3 Antonio Moreno Taquería Antonio Moreno Mataderos 2312 México D.F. 05023 Mexico
4 Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK

En 'n keuse uit die "Bestellings" tabel:

OrderID CustomerID EmployeeID OrderDate ShipperID
10354 58 8 1996-11-14 3
10355 4 6 1996-11-15 1
10356 86 6 1996-11-18 2


Alias ​​vir kolomme voorbeelde

Die volgende SQL-stelling skep twee aliasse, een vir die CustomerID-kolom en een vir die CustomerName-kolom:

Voorbeeld

SELECT CustomerID AS ID, CustomerName AS Customer
FROM Customers;

Die volgende SQL-stelling skep twee aliasse, een vir die CustomerName-kolom en een vir die ContactName-kolom. Let wel: Enkele of dubbele aanhalingstekens word vereis as die aliasnaam spasies bevat:

Voorbeeld

SELECT CustomerName AS Customer, ContactName AS "Contact Person"
FROM Customers;

Die volgende SQL-stelling skep 'n alias genaamd "Adres" wat vier kolomme kombineer (Adres, Poskode, Stad en Land):

Voorbeeld

SELECT CustomerName, CONCAT_WS(', ', Address, PostalCode, City, Country) AS Address
FROM Customers;

Alias ​​vir Tabelle Voorbeeld

Die volgende SQL-stelling kies al die bestellings van die kliënt met CustomerID=4 (Around the Horn). Ons gebruik die "Klante" en "Bestellings"-tabelle, en gee hulle die tabelaliasse van "c" en "o" onderskeidelik (Hier gebruik ons ​​aliasse om die SQL korter te maak):

Voorbeeld

SELECT o.OrderID, o.OrderDate, c.CustomerName
FROM Customers AS c, Orders AS o
WHERE c.CustomerName='Around the Horn' AND c.CustomerID=o.CustomerID;

Die volgende SQL-stelling is dieselfde as hierbo, maar sonder aliasse:

Voorbeeld

SELECT Orders.OrderID, Orders.OrderDate, Customers.CustomerName
FROM Customers, Orders
WHERE Customers.CustomerName='Around the Horn' AND Customers.CustomerID=Orders.CustomerID;

Aliases kan nuttig wees wanneer:

  • Daar is meer as een tabel betrokke by 'n navraag
  • Funksies word in die navraag gebruik
  • Kolomname is groot of nie baie leesbaar nie
  • Twee of meer kolomme word saam gekombineer

Toets jouself met oefeninge

Oefening:

Wanneer die Customerstabel vertoon word, maak 'n ALIAS van die PostalCodekolom, die kolom moet eerder genoem Pnoword.

SELECT CustomerName,
Address,
PostalCode 
FROM Customers;