table a
-------------------------------------------------
id name wishlist1 wishlist2 wishlist3
1 john 1 2 3
2 paul 4 5
table b
--------------------------------------------------
id goods
1 car
2 aircraft
3 bicycle
4 motorbike
5 ipad
result i want to get
---------------------------------------------------
john car aircraft bicycle
paul motorbike ipad
how could i get this result?
(in mysql)
This outputs up to 3 wishes (with nulls in wish columns when they don’t have a wish)
This might be better though, and it’s neater, if you don’t mind a comma-delimited list of wishes:
which will output: