Here's my table structure:
user_id features
------------------
1 1,2,3,4,5
2 2,4,5
3 1,2
4 3,4,5
id feature
------------------------
1 item1
2 item2
3 item3
4 item4
5 item5
I'd like to join both tables and query eg. user id 2 and get the following result:
id_feature feature
-----------------------------------------
2 item2
4 item4
5 item5
I'm storing up to 500 values in "features", that's why I didn't want to create thousands of records. Would this be possible in an easy way?