How To Use CROSS JOIN Keyword In SQL
In this article, we will learn how to use the CROSS JOIN keyword in SQL.
The CROSS JOIN keyword is used to combine each row of the first table with each row from the second table, also known as CARTESIAN JOIN.
In general words, we can say that the CROSS JOIN keyword is used to select the Cartesian product of the sets of rows from the joined table.