Informatics Practices

With SELECT statement used for joins, the USING subclause produces …………… join.

  1. Equi-join
  2. Natural
  3. Left Join
  4. Right Join

SQL Joins & Grouping

3 Likes

Answer

Natural

Reason — The USING subclause in a SELECT statement produces a natural join, where columns with the same name in the joined tables are automatically used as join conditions, resulting in a natural join operation.

Answered By

1 Like


Related Questions