Hello!
Made a request:
select ta.id, ct.tag_id from table_a ta join table_tags ct on ta.id = ct.table_a_id where ct.tag_id in (1,2,3) I supplement this request with the group by cr.id line :
select ta.id, ct.tag_id from table_a ta join table_tags ct on ta.id = ct.table_a_id where ct.tag_id in (1,2,3) group by cr.id How to make so that in tag_id of the second element were all three tags in one line (1, 2 and 3)? Available in varchar format
I'm not a big specialist in sql, I'm sorry if the question is banal)

