In a Cartesian join, also known as a cross join, each row from the first table is combined with each row from the second table.
If the first table has 5 rows and the second table has 3 rows, the result of the Cartesian join will consist of 5 * 3 = 15 rows.