I have a table of users where 1 column stores user\'s \"roles\". We can assign multiple roles to particular user.
Then I want to store role IDs in
You could do something like this
INSERT INTO table (id, roles) VALUES ('', '2,3,4');
Then to find it use FIND_IN_SET
FIND_IN_SET