M
MikeR
I have 2 tables in an Access DB. In the ID table an ID may have 1,2 or 3 rows.
The g columns may be either NULL, an F, or a P. I want to select IDs where none
of the rows for that ID contains an F, and find the name for that ID in another
table (sName) which contains IDs and names
ID g1 g2 g3 g4 sem
-----------------------
AA P 1
AA F P 2
AA P 3
BB P 1
CC P 1
CC P 2
CC 3
DD 1
ID stuName
----------------------
AA Bill
BB Joe
CC Mac
DD Mazie
Result set desired:
BB Joe
CC Mac
DD Mazie
TIA, Mike
The g columns may be either NULL, an F, or a P. I want to select IDs where none
of the rows for that ID contains an F, and find the name for that ID in another
table (sName) which contains IDs and names
ID g1 g2 g3 g4 sem
-----------------------
AA P 1
AA F P 2
AA P 3
BB P 1
CC P 1
CC P 2
CC 3
DD 1
ID stuName
----------------------
AA Bill
BB Joe
CC Mac
DD Mazie
Result set desired:
BB Joe
CC Mac
DD Mazie
TIA, Mike