Hi all,
Here is the deal: I have two tables, program and agent. The primary key program_id in program table is the foreigh key in agent table. I need to retrieve a list of agents by program, but it has to be a "flat" one. I.e., instead of:
Program Agent
1 Bill
1 Jo
1 Matt
I need
Program Agent1 Agent2 Agent3
1 Bill Jo Matt
Is there any way to do that? Thanks!
Here is the deal: I have two tables, program and agent. The primary key program_id in program table is the foreigh key in agent table. I need to retrieve a list of agents by program, but it has to be a "flat" one. I.e., instead of:
Program Agent
1 Bill
1 Jo
1 Matt
I need
Program Agent1 Agent2 Agent3
1 Bill Jo Matt
Is there any way to do that? Thanks!