SQL CROSS JOIN

The SQL Server Cross Join returns the Cartesian product of both tables. Cartesian product means the Number of Rows present in Table 1 Multiplied by the Number of Rows present in Table 2. The SQL Cross Join does not require any common column to join two tables. Let us see the visual representation of the … Read more