Which SQL keyword is used to combine rows from two or more tables based on related columns?
- UNION
- JOIN
- MERGE
- COMBINE
Answer: JOIN
JOIN combines rows from multiple tables using related columns (usually primary/foreign keys). Types: INNER JOIN (matching rows), LEFT/RIGHT JOIN (all rows from one side), FULL OUTER JOIN (all rows). Essential for normalized database queries retrieving related data across tables.