1. <p>Which JOIN type returns only the rows where there is a match in <strong>both</strong> tables?</p>
- LEFT JOIN
- INNER JOIN
- FULL OUTER JOIN
- CROSS JOIN
Hint: <p><strong>INNER JOIN</strong> returns only rows where the join condition is satisfied in both tables. Rows without a match in either table are excluded from the result set.</p>