InterviewSolution
Saved Bookmarks
| 1. |
State difference between Full Join and Cross Join. |
Answer»
Syntax: SELECT * FROM Table_1 CROSS JOIN Table_2;In the case of two lists, one consisting of 4, 5, 6, and the other consisting of a, b, and c, the Cartesian product between the two lists would be as follows: 4a, 5b, 6c 4a, 5b, 6c 4a, 5b, 6c
Syntax: SELECT * FROM Table1 FULL OUTER JOIN Table2 ON Table1.column_name = Table2.column_name; |
|