Q. There are multiple ways to create Cartesian product of two tables in MySQL. Describe them.
Answer :-
There are following ways to create Cartesian product:-
i = Select * from <Table 1> CROSS JOIN <Table 2> ;
ii = Select * from <Table 1 > , <Table 2> ;
Post a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )