InterviewSolution
Saved Bookmarks
| 1. |
What Is Cross Join? |
|
Answer» Cross JOIN is defined as the Cartesian PRODUCT of RECORDS from the tables present in the join. Cross join will produce result which combines each row from the first table with the each row from the second table. Cross join is defined as the Cartesian product of records from the tables present in the join. Cross join will produce result which combines each row from the first table with the each row from the second table. |
|