I have 2 tables: users and user_params
An example users table:
id | name 1 | Vasya Pupkin 2 | Pupok Vaskin
Sample user_params table
uid | param_int 1 | 10 1 | 20 1 | 30 2 | 10 2 | 25
How do I select the data so that the end result looks like this?
id| name | params 1 | Vasya Pupkin | 10,20,30 2 | Pupok Vaskin | 10,25