views:

242

answers:

1

I have an MS Access table that has a many-to-one key to another one, and I would like a query to display those items in one row. For example, Foo, Bar and Baz link to the row with ID 1, so I would like to display:

1 | Foo | Bar | Baz

instead of

1 | Foo
1 | Bar
1 | Baz
+2  A: 

Look at Access's PIVOT TRANSFORM.
I think that is what you will need.

shahkalpesh
That looks like it will work, thank you.
Stavros Korokithakis