CBSE Class 12 Informatics Practices
Question 73 of 91
JOINS and SET Operations — Question 9
Back to all questionsThe two ways to create cartesian product of two tables in MySQL are as follows:
- Creating Cartesian Product Without Join Condition:
SELECT *
FROM table1 JOIN table2;- Creating Cartesian Product Using CROSS JOIN Clause:
SELECT *
FROM table1
CROSS JOIN table2;