M
Mike
I have two tables [tblProjects] and [tblPO]. I want to
select all the projects and all of the associated
purchase order numbers. Instead of returning a row for
each occurance, i want to display all of the po numbers
in a single field for each projects. Example:
I don't waat
ProjID = 1 | PO_Num = 1
ProjID = 1 | PO_Num = 2
ProjID = 1 | PO_Num = 3
I want
ProjID = 1 | PO_Num = 1, 2, 3
Thanks in advanced.
select all the projects and all of the associated
purchase order numbers. Instead of returning a row for
each occurance, i want to display all of the po numbers
in a single field for each projects. Example:
I don't waat
ProjID = 1 | PO_Num = 1
ProjID = 1 | PO_Num = 2
ProjID = 1 | PO_Num = 3
I want
ProjID = 1 | PO_Num = 1, 2, 3
Thanks in advanced.