Intermediate SQL
Q69 / 100

What does the "CROSS JOIN" produce?

Correct! Well done.

Incorrect.

The correct answer is B) The Cartesian product of two tables — every row from the first table combined with every row from the second

B

Correct Answer

The Cartesian product of two tables — every row from the first table combined with every row from the second

Explanation

CROSS JOIN returns all possible combinations of rows from the joined tables (rows_A × rows_B), with no join condition restricting the pairing.

Progress
69/100