SELECT COUNT(*)
FROM TABLE1 B,
TABLE2 A
WHERE B.FIELD1 = 44441 AND B.FIELD2 = A.FIELD2
GROUP BY A.FIELD3
This query is pulling back the following info currently -
12
27
46
1
2
1
2
I want to pull back the value in field 3 also...but am coming up blank on how to code this. Any help would be appreciated.
12 A
27 B
46 C
1 D
2 E
1 F
2 G
FROM TABLE1 B,
TABLE2 A
WHERE B.FIELD1 = 44441 AND B.FIELD2 = A.FIELD2
GROUP BY A.FIELD3
This query is pulling back the following info currently -
12
27
46
1
2
1
2
I want to pull back the value in field 3 also...but am coming up blank on how to code this. Any help would be appreciated.
12 A
27 B
46 C
1 D
2 E
1 F
2 G