Link to home
Start Free TrialLog in
Avatar of Karl001
Karl001Flag for Canada

asked on

Create an Access query

Hi,
As example, suppose I have a table, with 2 fields, ClientNo and ProductNo
   ClientNo             ProductNo
       client1                 productA
       client1                 productB
       client1                 productC
       client2                 productB
       client3                 productA
       client3                 productC

I would like to create a query where the result should be:

   ClientNo            Product
       client1                 productA,  productB,  productC
       client2                 productB
       client3                 productA,  productC

How can I do it without using a temporary table?
ASKER CERTIFIED SOLUTION
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Karl001

ASKER