tobermory20
Programmer
Hello,
I am struggling with trying to compare two different database tables in different database. in theory it seems managable, but I can seem to make it work. where is what I did in Access but need to translate for MS SQL Server
thanks in advance...
~ T
I am struggling with trying to compare two different database tables in different database. in theory it seems managable, but I can seem to make it work. where is what I did in Access but need to translate for MS SQL Server
Code:
SELECT Table2.server
FROM Table2 LEFT JOIN Table1 ON Table2.server = Table1.server
GROUP BY Table2.server, Table1.server
HAVING (((Table2.server) Is Not Null) AND ((Table1.server) Is Null));
thanks in advance...
~ T