Understanding Simple Joins |
||||||
|
|
||||||
SELECT [DISTINCT] * | column [alias], ... |
The USING clause enables you to specify the columns to be used for a join between two tables. The column names must be the same for both tables and must have compatible data types. Use the USING clause if your tables contain more than one column whose names match to explicitly identify the name of the columns that you want to join.
SELECT [DISTINCT] * | column [alias], ... |