Cartesian Products :
- A Cartesian product is formed when:
• A join condition is omitted
• A join condition is invalid
• All rows in the first table are joined to all rows in the second table
- To avoid a Cartesian product, always include a valid join condition
- The CROSS JOIN clause produces the cross-product of two tables
- This is also called a Cartesian product between the two tables
- SELECT ename, dname FROM emp CROSS JOIN dept ;