Если вы ищете в t3
строки, которые существуют в t1
, но отсутствуют в t2
, попробуйте:
select t3.Items
from table3 t3
where exists
(
select *
from table1 t1
where t1.Items = t3.items
)
and not exists
(
select *
from table2 t2
where t2.Items = t3.items
)