The CROSS JOIN is used to join all rows from one table to all rows of another table.
SELECT
*
FROM
table_name1
CROSS JOIN
table_name2;
The CROSS JOIN is used to join all rows from one table to all rows of another table.
SELECT
*
FROM
table_name1
CROSS JOIN
table_name2;