Which type of JOIN returns only the rows where there is a match in both tables?

  • INNER JOIN
  • LEFT JOIN
  • RIGHT JOIN
  • FULL OUTER JOIN
An INNER JOIN returns only the rows where there is a match in both tables. It combines records from two tables based on a common column and includes only the rows with matching values in both tables. Rows with no matching values are excluded from the result set.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *