Except
Selecting records from a table, that is not existing in another table.
We can use the keyword EXCEPT
example:
select * from emp1
except
select * from emp2
It will display records that exist in emp1 but not in emp2
We can use the keyword EXCEPT
example:
select * from emp1
except
select * from emp2
It will display records that exist in emp1 but not in emp2
Comments
Post a Comment