select item
, location
, date
, quantity
from t1
union
select item
, location
, date
, quantity
from t2
there will be cases where
item,location,date will be the same, but quantity different.
in that case, I only want to see the values from t1
how can I exclude records from t2?
Forums: