I have two tables with data, t1 and t2.
t1 contains a general info, such as
1. id
2. projectID
3. items (serialized array)
t2 has descriptions of the items, ids of which are stored in t1.items
As a final result in need to output the details from t1 with descriptions of the items from t2. Not really sure how to tackle this...
Shall I run a loop for t1 then unserialize items turning it into an array and then run a second loop for t2 for those items that are in the array? If yes, how do i do this in MySQL?