I have a table filled with cars, another table that has the car IDs and the feature IDs and another table with the feature IDs and feature names.
A car can have multiple features in that table. The result of the query is, that i get multiple instances of the same car, each having a different feature.
I would like to have only one instance of the car (by ID) and combine all features into one column (list or array). I could do it in code after the query but i would like to do it in a query instead.
Cars table         Car property table      Property table
ID    Name         Car_ID  property_ID     property_id   Property_name
1     Audi         1       1               1             Aircon
2     BMW          1       2               2             Autopilot
3     Mercedes     2       1
                   3       2
Result is:
1 Audi Aircon
1 Audi Autopilot
2 BMW  Autopilot
3 Mercedes None
Result should be:
1 Audi [Aircon, Autopilot]
2 BMW   Autopilot
3 Mercedes None 
 
    