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 CROSS JOIN Sleutelwoord


SQL CROSS JOIN Sleutelwoord

Die CROSS JOINsleutelwoord gee alle rekords van beide tabelle (tabel1 en tabel2) terug.

MySQL KRUIS SLUIT AAN

KRUISSLUIT Sintaksis

SELECT column_name(s)
FROM table1
CROSS JOIN table2;

Let wel: CROSS JOIN kan moontlik baie groot resultate-stelle lewer!


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
1

Alfreds Futterkiste Maria Anders Obere Str. 57 Berlin 12209 Germany
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

En '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


MySQL CROSS JOIN Voorbeeld

Die volgende SQL-stelling kies alle kliënte en alle bestellings:

Voorbeeld

SELECT Customers.CustomerName, Orders.OrderID
FROM Customers
CROSS JOIN Orders;

Let wel: Die CROSS JOINsleutelwoord gee alle ooreenstemmende rekords van beide tabelle terug, of die ander tabel pas of nie. Dus, as daar rye in "Klante" is wat nie passings in "Bestellings" het nie, of as daar rye in "Bestellings" is wat nie passings in "Klante" het nie, sal daardie rye ook gelys word.

As jy 'n WHEREklousule byvoeg (as tabel1 en tabel2 'n verwantskap het), CROSS JOINsal dit dieselfde resultaat as die INNER JOINklousule lewer:

Voorbeeld

SELECT Customers.CustomerName, Orders.OrderID
FROM Customers
CROSS JOIN Orders
WHERE Customers.CustomerID=Orders.CustomerID;