Hello everyone,
Could somebody remind me how to do the following:
Suppose I have two tables, mytable1 and mytable2, respectively.
My master data:
ID Name
1 Joan
2 Jill
3 Jenny
4 Jack
And a table of entrees I wanted excluded from my query:
ID
2
4
So I want my query results to be:
ID Name
1 Joan
3 Jenny
What would the SQL look like to do this? Thanks for the help.
Collen
Could somebody remind me how to do the following:
Suppose I have two tables, mytable1 and mytable2, respectively.
My master data:
ID Name
1 Joan
2 Jill
3 Jenny
4 Jack
And a table of entrees I wanted excluded from my query:
ID
2
4
So I want my query results to be:
ID Name
1 Joan
3 Jenny
What would the SQL look like to do this? Thanks for the help.
Collen