I have two tables. Both contains question id field. I want to get all records from first table that are not present in second one. I don\'t want to use \"NOT IN\" constrain as s
try:
select from t1 right join t2 on t2.id = t1.id where t2.id is null