So I've got 2 tables which looks like the below:
MetaData
Id | Value
---------------------
1 | 5
1 | 6
2 | 6
LookUp
Value | Text
---------------------
5 | Car
6 | Truck
I need a query to pull out the Id from MetaData and the text from Lookup so e.g.
Id | Text
---------
1 | Car, Truck
2 | Truck
Any ideas on how I can do this? Thanks!