Informatics Practices

Inner Join combines only the matching rows from the two tables.

SQL Joins & Grouping

1 Like

Answer

True

Reason — An inner join in SQL combines only the rows from two tables that have matching values in the specified columns, based on the join condition. Rows that do not have matching values in both tables are excluded from the result set.

Answered By

1 Like


Related Questions