Cloud
FROM
The FROM clause specifies the tables that a query reads data from.
The JOIN clause combines records from two tables based on common fields.
The LEFT JOIN returns all matching records from the left table combined with the right table.
The OUTER JOIN returns all the records from the selected fields between two tables, whether the join condition is met or not.
The RIGHT JOIN returns all matching records from the right table combined with the left table.
Was this helpful?