how to select all records but exclude one in sql server code example
Example: exclude rows sql server
SELECT Name, BirthDate FROM Employee
EXCEPT
SELECT Name, BirthDate FROM Customer
SELECT Name, BirthDate FROM Employee
EXCEPT
SELECT Name, BirthDate FROM Customer