Skip to main content

10 docs tagged with "joins"

View all tags

FULL OUTER JOIN

Return all rows from both tables using FULL OUTER JOIN, with NULLs where no match exists.

INNER JOIN

Combine rows with matching values in both tables using INNER JOIN.

LEFT JOIN

Include unmatched rows from the left table using LEFT JOIN.

RIGHT JOIN

Include unmatched rows from the right table using RIGHT JOIN.