I have two tables, one represents information about servers. Each server will have an SA. So it looks like:
CPU table
SERVERS SAs
server1 id1
server2 id2
servre3 id1
I also have a table of users. These are people who are allowed to log in and change the information about the servers. It looks like:
USER Table
ID NAME
id1 name1
id3 name3
id5 name5
I need a query that will tell me which id's are in the CPU table, that do not have a user account (USER table).
Any suggestions on how to do this?
Thanks
CPU table
SERVERS SAs
server1 id1
server2 id2
servre3 id1
I also have a table of users. These are people who are allowed to log in and change the information about the servers. It looks like:
USER Table
ID NAME
id1 name1
id3 name3
id5 name5
I need a query that will tell me which id's are in the CPU table, that do not have a user account (USER table).
Any suggestions on how to do this?
Thanks