G
Guest
Hi:
I have a table (actually view) like this:
name1 number1
A 1
A 2
A 3
A 4
B 5
B 4
B 7
B 3
C 3
C 8
D 4
D 2
E 1
E 2
....
this is a cross table. I am looking for a query, which name1 have number1 3
and 4. the correct answer will be A and B. C only have 3, D only have 4.
I tried
WHERE NUMBER1 IN (3,4)
which will return A, B, C, D.
Did anybody have the same problem before? where is the good place to ask
this kind of question? I would really appreaciate you help.
I use Oracle 9i as backend, Access XP as front end. I use link table to link
some Oracle table and view to Access.
I have a table (actually view) like this:
name1 number1
A 1
A 2
A 3
A 4
B 5
B 4
B 7
B 3
C 3
C 8
D 4
D 2
E 1
E 2
....
this is a cross table. I am looking for a query, which name1 have number1 3
and 4. the correct answer will be A and B. C only have 3, D only have 4.
I tried
WHERE NUMBER1 IN (3,4)
which will return A, B, C, D.
Did anybody have the same problem before? where is the good place to ask
this kind of question? I would really appreaciate you help.
I use Oracle 9i as backend, Access XP as front end. I use link table to link
some Oracle table and view to Access.