Class - 12 CBSE Computer Science — Assertion Reason Type Questions
Assertion (A): A Join is a query that combines rows from two or more tables.
Reasoning (R): Equi-joins are joins based on equality conditions.
- Both A and R are true and R is the correct explanation of A.
- Both A and R are true but R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.
SQL Queries
1 Like
Answer
Both A and R are true but R is not the correct explanation of A.
Explanation
An SQL JOIN clause is used to combine rows from two or more tables based on a common field between them. An Equi join is a simple SQL join condition that uses the equal sign (=) as a comparison operator to define a relationship between two tables based on a common field.
Answered By
2 Likes