INNER JOIN: Returns rows with matching values in both tables.
LEFT JOIN: Returns all rows from the left table and matching rows from the right table.
RIGHT JOIN: Returns all rows from the right table and matching rows from the left table.
FULL JOIN: Returns all rows with matches in either table.
CROSS JOIN: Returns the Cartesian product of both tables, producing all possible combinations.
Riya Answered question December 18, 2023
