

InterviewSolution
Saved Bookmarks
1. |
The SQL querySELECT columnsFROM TableARIGHT OUTER JOIN TableBON A.columnName = B.columnNameWHERE A.columnName IS NULL returns the following:(A) All rows in Table B, which meets equality condition above and, none from Table A, which meets the condition(B) All rows in Table A, which meets equality condition above and none from Table B, which meets the condition(C) All rows in Table B, which meets equality condition(D) All rows in Table A, which meets equality condition(E) None of these |
Answer» | |