Select from following answers:- There is no where condition in Cross Joins.
- Cross Joins never used on single tables rather used on 2 or more tables.
- Cross Joins when combined produce cartesian product.
- All of the above.
- All Above
Above all statements are correct about Cross Joins.
For Example:-
select id,name from test1,test2;
select id,name from test1 cross join test2;
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator