link: SQL Operations
SQL JOINS
Returns rows that have matching values in both tables.
Includes all rows from the left table and matched rows from the right table. Unmatched rows from the right table are filled with NULL.
Left Outer Exclusive Join
Returns rows from the left table that have no matches in the right table
Includes all rows from both tables, filling in NULLs where matches are not found.
Full Outer Exclusive Join
Returns rows from both tables that do not match each other.
Merges the results of two queries, removes duplicates, and sorts the rows.
Combines all rows from multiple queries, including duplicates, without sorting