I have the below situation:
table1
t1ID
t1Name
table2
t1ID
t3ReqID
table3
t3ReqID
t3Name
Where t1ID can be linked to multiple t3ReqID's.
I want to be able to bring back a recordset that looks like:
t1ID
t1Name
requirements
where requirements is a comma delimited list of t3Name
how do you do this without using a cursor?
Cheers