Go to the first, previous, next, last section, table of contents.


Join syntax

MySQL supports the following JOIN syntaxes:

table_reference, table_reference
table_reference [CROSS] JOIN table_reference
table_reference LEFT [OUTER] JOIN table_reference ON conditional-expr
table_reference LEFT [OUTER] JOIN table_reference USING (column-commalist)
table_reference NATURAL LEFT [OUTER] JOIN table_reference
{ oj table_reference LEFT OUTER JOIN table_reference ON conditional-expr }

The last example is ODBC syntax.


Go to the first, previous, next, last section, table of contents.