F
fingermark
I have a client that is requesting I support MSACCESS, but I am stumped
trying to concatenate as follows:
I have three tables.
SELECT Clients.ClientID, Clients.ClientName, CONCAT(SELECT * FROM
Orders WHERE ClientID = [Clients.ClientID]) AS Orders FROM Clients;
Any ideas on how I would do something like this... so, what I want is:
ClientID | ClientName | Orders
2 | Bob | Computer, Motherboard, Mouse
3 | Tom | Keyboard, Motherboard, Mouse
I need this to work in a web app, so a custom module won't work here --
as i don't think the Jet engine will allow it.
trying to concatenate as follows:
I have three tables.
SELECT Clients.ClientID, Clients.ClientName, CONCAT(SELECT * FROM
Orders WHERE ClientID = [Clients.ClientID]) AS Orders FROM Clients;
Any ideas on how I would do something like this... so, what I want is:
ClientID | ClientName | Orders
2 | Bob | Computer, Motherboard, Mouse
3 | Tom | Keyboard, Motherboard, Mouse
I need this to work in a web app, so a custom module won't work here --
as i don't think the Jet engine will allow it.