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 Jun 12, 2023 in Sql by Robin
0 votes
0 votes
asked Jul 12, 2020 in Sql by Robindeniel
...