Clipper2000
Programmer
I am developing an Access database for a local Adult video store. So far I am the following tables:
1). Titles: this table list all the movie titles with an autonumber data type, along with the studio, media type and related data.
2). Stars: Actors and actresses found in each title (link to the title table via a numeric field).
For example, assume autonumer 1 is "Debbie Does Dalllas", and 2 is a different movie title, the contend in Stars table would look like:
TitleNo star
1 Bambi Woods
1 Misty Winter
1 Pat Allure
1 Rikki O'Neal
1 Arcadia Lake
2 Peter North
2 Juliet Anderson
2 Ginger Lynn
I would like the query to return something like this:
Title Star
1 Bambi Woods, Misty Winter, Pat Allure, Robyn Byrd
2 Peter North, Juliet Anderson, Ginger Lynn
I can do this using ADO and VB. However, the reason I ask is we will soon migrate to SQL server and I would like to make uses of the server side SQL processing capability instead of processing it locally. Your help will be greatly appreciated.
Clipper2000
1). Titles: this table list all the movie titles with an autonumber data type, along with the studio, media type and related data.
2). Stars: Actors and actresses found in each title (link to the title table via a numeric field).
For example, assume autonumer 1 is "Debbie Does Dalllas", and 2 is a different movie title, the contend in Stars table would look like:
TitleNo star
1 Bambi Woods
1 Misty Winter
1 Pat Allure
1 Rikki O'Neal
1 Arcadia Lake
2 Peter North
2 Juliet Anderson
2 Ginger Lynn
I would like the query to return something like this:
Title Star
1 Bambi Woods, Misty Winter, Pat Allure, Robyn Byrd
2 Peter North, Juliet Anderson, Ginger Lynn
I can do this using ADO and VB. However, the reason I ask is we will soon migrate to SQL server and I would like to make uses of the server side SQL processing capability instead of processing it locally. Your help will be greatly appreciated.
Clipper2000