From clause inner join

The syntax for the FROM clause with INNER JOIN in BNF is as follows:

Syntax

from_clause_inner_join ::=
{ FROM table_ref CROSS JOIN table_ref
  | FROM table_ref[ INNER ] JOIN table_ref 
     ON search_condition}