0 votes
in Sql by
What is Cartesian product in SQL?

1 Answer

0 votes
by

Cartesian Product or Cross Join is a type of join used in SQL. This type of join is done by making every row of a table with every other join in the other table, and thus returns the Cartesian product of the sets of records from two or more joined tables.

...