I am trying to execute a query in sql to get only the records of agents associated with multiple descriptions
Example: Table name: AGENT
AGENCY_ID PRODUCT_DESC AGENT number
100 ABC 2000
101 ABC 2001
101 XYZ 2002
102 XYZ 2003
AGENCY_ID 101 has both ABC and XYZ descriptions.From the table, I want to pull only records from the overlapping agency
In the above case I want to pull only:
AGENCY_ID PRODUCT_DESC AGENT number
101 ABC 2001
101 XYZ 2002
I am also trying to execute this in the Business objects webi report query filters.
Please advise me in getting to the solution of my issue.
Thanks in advance!