I'm looking for something like FOR XML PATH ('') for MS Access.
Since I can only read data but not modify the access file/database, everything beyond querying is not an option for me.
A little detail:
My target is to have some query like below but usable for MS Access 2013:
SELECT 
    Items.Name, Items.Description , 
    (SELECT ItemValues.Value + ';'
     FROM Itemvalues 
     WHERE Itemvalues.ItemID = [value] 
       AND someOtherConditions
     FOR XML PATH ('') ) AS Values 
FROM 
    Items 
WHERE 
    Items.ID = [value]
If the results of ItemValue selection will be like
SELECT ItemValues.Value
FROM Itemvalues 
WHERE Itemvalues.ItemID = [value] 
  AND someOtherConditions
Output:
     itemval1
     property2val
     1234foo
And the result of Item Selection will be like
SELECT 
    Items.Name, Items.Description 
FROM 
    Items 
WHERE 
    Items.ID = [value]
Output:
 Testitem | This is a test item
I want to have a result row like
 Testitem | This is a text test item | itemval1;property2val;1234foo;
Thanks your for help
PS: I've seen some other posts about this topic but since those are either many years old or not fit for my situation I'm trying my luck.
 
     
     
    