KnowledgeBoat Logo

Informatics Practices

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

SQL Joins & Grouping

2 Likes

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

2 Likes


Related Questions