I can't seem to figure this sql out. I'm thinking I may need some VBA but:
I have two tables related by ID where its a one to many relationship.
table1 table2
ID ID, Date
Sample:
table1 table2
1234 1234, 12/31/2019
1234, 10/1/2021
The result I want back is one record with two columns:
ID Date
1234 12/31/2019 | 10/1/2021
So I return one record with the two (or more) dates concatenated into one column.
Any ideas?