Hi, I'm attempting to do a query that will return all values for a specific person under one alias. e.g I have a users table with names in such as Fred, Bob, Jim. Then I have a devices table of items they all use, say Fred uses a Phone, PC, Printer and Fax and they were linked on userid would I be able to run a query that instead of returning:
Name-----Device
Fred ------ Phone
Fred ------ PC
Fred ------ Printer
Fred ------ Fax
I would get:
Name ----- Device
Fred ------ Phone, PC, Printer, Fax
Sorry if it's not clear but without being able to draw up tables it's hard to explain.
Name-----Device
Fred ------ Phone
Fred ------ PC
Fred ------ Printer
Fred ------ Fax
I would get:
Name ----- Device
Fred ------ Phone, PC, Printer, Fax
Sorry if it's not clear but without being able to draw up tables it's hard to explain.
Comment