InterviewSolution
Saved Bookmarks
| 1. |
Which off the following is not a valid type of join?(a) left outer join(b) outer join(c) join(d) full joinI got this question in an internship interview.This intriguing question originated from Join Expressions in chapter Intermediate and Advanced Sql of RDBMS |
|
Answer» RIGHT answer is (d) full JOIN Best explanation: There is no such join called as full join. There is a full outer join but a full join does not EXIST. |
|