0 votes
in Sql by
What is the Cartesian product of the table?

1 Answer

0 votes
by

The output of Cross Join is called a Cartesian product. It returns rows combining each row from the first table with each row of the second table. For Example, if we join two tables having 15 and 20 columns the Cartesian product of two tables will be 15×20=300 rows.

Related questions

0 votes
asked Sep 2, 2022 in Ruby by DavidAnderson
0 votes
asked Jan 13 in Sql by DavidAnderson
...