Hello,
please, could somebody help me to customize this query:
SELECT LastName, ParentsName, FirstName, DateOfBirth
FROM T1
WHERE (LastName and ParentsName and FirstName and DateOfBirth) NOT IN
(SELECT LastName, ParentsName, FirstName, DateOfBirth
FROM T2)
Namely, if it consists of only one field, it works. But, what if I need to compare more fields, it fails?