KnowledgeBoat Logo

Computer Science

Which product is returned in a join query have no join condition ?

  1. Equijoins
  2. Cartesian product
  3. Both (1) and (2)
  4. None of the mentioned

SQL Joins & Grouping

2 Likes

Answer

Cartesian product

Reason — When a join query has no join condition specified, it results in a Cartesian product. This means that every row from the first table is combined with every row from the second table.

Answered By

2 Likes


Related Questions