I'm trying to accomplish the same thing that has been answered here: SQL combining data from two rows into a single row when they share a common identifier only in MS Access.
Here's what the data looks like:
ArticleID CategoryName
1 Alpha
1 Beta
2 Beta
2 Gamma
3 Alpha
3 Delta
I want the results to look like this:
ArticleID Categories
1 Alpha, Beta
2 Beta, Gamma
3 Alpha, Delta