SQL Join

From Wiki @ Karl Jones dot com
Revision as of 08:10, 16 May 2016 by Karl Jones (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

In SQL, the keyword join (often JOIN) indicates the combining of records from two tables.

Syntax

The general syntax is:

SELECT column-names
 FROM table-name1 JOIN table-name2 
 ON column-name1 = column-name2
 WHERE condition

See also

External links