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 REGS SLUIT AAN Sleutelwoord


MySQL REGS SLUIT AAN Sleutelwoord

Die RIGHT JOINsleutelwoord gee alle rekords van die regtertabel (tabel2) terug, en die ooreenstemmende rekords (indien enige) vanaf die linkertabel (tabel1).

MySQL REGS SLUIT AAN

REGS SLUIT AAN Sintaksis

SELECT column_name(s)
FROM table1
RIGHT JOIN table2
ON table1.column_name = table2.column_name;

Demo-databasis

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

Hieronder is 'n keuse uit die "Bestellings" tabel:

OrderID CustomerID EmployeeID OrderDate ShipperID
10308 2 7 1996-09-18 3
10309 37 3 1996-09-19 1
10310 77 8 1996-09-20 2

En 'n keuse uit die "Werknemers"-tabel:

EmployeeID LastName FirstName BirthDate Photo
1 Davolio Nancy 12/8/1968 EmpID1.pic
2 Fuller Andrew 2/19/1952 EmpID2.pic
3 Leverling Janet 8/30/1963 EmpID3.pic

MySQL REGS SLUIT Voorbeeld

Die volgende SQL-stelling sal alle werknemers en enige bestellings wat hulle dalk geplaas het terugstuur:

Voorbeeld

SELECT Orders.OrderID, Employees.LastName, Employees.FirstName
FROM Orders
RIGHT JOIN Employees ON Orders.EmployeeID = Employees.EmployeeID
ORDER BY Orders.OrderID;

Let wel: Die RIGHT JOINsleutelwoord gee alle rekords van die regtertabel terug (Werknemers), selfs al is daar geen passings in die linkertabel (Bestellings).


Toets jouself met oefeninge

Oefening:

Kies die korrekte JOINklousule om al die rekords uit die Customerstabel plus al die passings in die Orderstabel te kies.

SELECT *
FROM Orders

ON Orders.CustomerID=
Customers.CustomerID;