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
Try This
SELECT f.* FROM first_table f LEFT JOIN second_table s ON f.key=s.key WHERE s.key is NULL
For more please read this article : Joins in Sql Server