Computer Science

The operation whose result contains all pairs of tuples from the two relations, regardless of whether their attribute values match.

  1. Join
  2. Cartesian product
  3. Intersection
  4. Set difference

SQL Joins & Grouping

1 Like

Answer

Cartesian product

Reason — In an unrestricted join or Cartesian product of two relations, all possible combinations are formed by pairing each row from the first table with every row from the second table, regardless of whether their attribute values match. This operation returns n1 * n2 rows, where n1 is the number of rows in the first table, and n2 is the number of rows in the second table.

Answered By

1 Like


Related Questions