InterviewSolution
Saved Bookmarks
| 1. |
How will you fetch the values from TableA that are not present in TableB without using the NOT keyword? |
||||||||
Answer»
We can do it EASILY by USING the SELECT and EXCEPT keywords as SHOWN below: SELECT * FROM TableA EXCEPT SELECT * FROM TableB; |
|||||||||