I have two tables...
tbl1
ClientNo ApptID Status
1234 1 121
1234 2 121
1235 1 121
1235 2 121
tbl2
ClientNo Valid
1234 17
I'm looking to select all clients from tbl1 - where ApptID = 2, and there is no corresponding record in tbl2. So based on this data, 1234 has a record in tbl2, then no need to display it in end result.
I would love to see this as the end result:
ClientNo ApptID Status
1235 2 121