What I am tying to do sounds simple, but cant figure it out. I have a table with a report_number field and a report_type field. The report_number field can have the same "report number" in it as well as the report_type field. I will give some data to better explain what I need to do.
report_number report_type
1 A
2 A
2 B
1 A
3 A
3 A
3 A
4 C
4 C
I need to query for reports that = 'A', but not the SAME report number that also has a report type B associated with it. The results that I would like to get is report #s 1 and 3.
The report number can have different report_types associated with it.
Thanks!