SQL/Join

An SQL join clause combines records from two or more tables in a database.


Two tables

tblSuit
SuitColor
tblLight
LightColor



Inner join
SELECT * FROM tblSuit
JOIN tblLight ON tblSuit.Color = tblLight.Color
Suit tblSuit.Color Light tblLight.Color



Three tables

ta
ca
va
yooo
te
ce
ve
yooo
tu
cu
vu
yooo




Category:Databases Category:Structured Query Language
Category:Databases Category:Structured Query Language