InterviewSolution
Saved Bookmarks
| 1. |
CROSS JOIN and JOIN are similar to __________(a) INNER JOIN(b) NATURAL JOIN(c) OUTER JOIN(d) CARTESIAN JOIN |
|
Answer» Right answer is (a) INNER JOIN The best I can explain: The joins ‘CROSS JOIN’ and ‘JOIN’ types are exactly similar to the ‘INNER JOIN’. The statements containing ‘INNER JOIN’ can replace it with ‘CROSS JOIN’ or ‘JOIN’ to get exactly the same result. |
|