NOT EXISTS is usually a good method:
NOT EXISTS
select t1.* from first_table t1 where not exists (select 1 from second_table t2 where t2.id = t1.id);
2.1m questions
2.1m answers
60 comments
57.0k users