Qualified joins
Qualified joins specify conditions for the combining of rows.This happens either explicitly in an ON
clause or implicitly in a USING
clause.
<qualified-join> ::= <table-reference> [<join-type>] JOIN <table-primary> { ON <search-condition> | USING (<column-name-list>) } <join-type> ::= INNER | {LEFT | RIGHT | FULL} [OUTER]