MySQL Cross Join

MySQL Cross Join returns the Cartesian product of both tables. The Cross Join does not require any common column to join two tables. The Cartesian product means the Number of Rows present in Table 1 Multiplied by the Number of Rows present in Table 2. MySQL Cross Join Syntax The basic syntax of the Cross … Read more