I have two tables with similar column names and I need to return records from the left table which are not found in the right table? I have a primary key(column) which will
select * from left table where key field not in (select key field from right table)