SQL Query involving two tables

Hello All,

I am wondering how to make a query between two tables, which each contain a serialnum column. In plain English I would describe the query as...

select records from table1
where there is a serialnum that is not present anywhere in table2

Can anyone help me this?

Thank you,
Aaron

You can use NOT EXISTS for this:

SELECT ...
FROM Table1
WHERE NOT EXISTS (SELECT NULL FROM Table2 WHERE Table1.Column1 = Table2.Column1)

1 Like

thank you, worked like a charm :slight_smile: