SELECT column1,column2,column3
FROM t1
WHERE (column1,column2,column3) NOT IN
(SELECT column1,column2,column3 FROM t2);
I can use this query to find records in t1 but not in t2. But this query only will work if column1, column2, column3 are NOT NULL.
Is there anyway that I can use the similar query but allow column1, column2, column3 has null value?
Just like using <=> replace = will cover the null value case?
Thanks!