KnowledgeBoat Logo

Computer Science

Assertion. In the result produced by a join query, there may be multiple identical columns in the final result, but not always.

Reason. The join in which only one of the identical columns (coming from the joined tables) exists, is called a Natural join.

SQL Joins & Grouping

2 Likes

Answer

(a)

Both Assertion and Reason are true and Reason is the correct explanation of Assertion.

Explanation
In the result produced by a join query, there may be multiple identical columns in the final result, but this is not always the case. Depending on the type of join and the columns involved, duplicate columns may or may not appear in the result set. A Natural join is a type of join in SQL where only one of the identical columns (coming from the joined tables) exists in the final result.

Answered By

2 Likes


Related Questions