Cross Join
Cross Join
Cross Join
Syntax
Or
SELECT column names FROM table1, table 2 ;
Also with cross join we do not have any ON or USING join condition.
Table 2: The second table is DEPT this table also consists of 3 columns
dept id, dept name and emp id.
Column dept id is the primary key here and column emp id is
the foreign key reference from the emp table.