A JOIN
merges rows from two or more tables based on a related column. Most-used types: INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN.
SELECT
β Choose which columns to return.FROM
β Base table.INNER JOIN
β Combine records that have matching values in both tables.ON
β Specify which columns to match on.INNER JOIN
only returns rows when thereβs a match in both tables. Use a LEFT JOIN
if you want all rows from the left table regardless.