travisbrown
Technical User
- Dec 31, 2001
- 1,016
How would one roll up multiple records in a child table to one field in a join expression between a parent and child?
e.g.
Select a.name, b.note FROM a LEFT OUTER JOIN b ON a.id = b.fid
Returns, as it should
name1 | note1
name1 | note2
name1 | note3
I want...
name1 | note1,note2,note3
In SQL Server I'd use a user-defined function. Not sure how to do it in Access.
Travis
..with the strength of a grizzly, the reflexes of a puma, and the wisdom of a man.
e.g.
Select a.name, b.note FROM a LEFT OUTER JOIN b ON a.id = b.fid
Returns, as it should
name1 | note1
name1 | note2
name1 | note3
I want...
name1 | note1,note2,note3
In SQL Server I'd use a user-defined function. Not sure how to do it in Access.
Travis
..with the strength of a grizzly, the reflexes of a puma, and the wisdom of a man.