I Have String of groupIds(column Name) like '30,31,47' and I want separate report list who have 30 groupId, who have 31 groupId, who have 47 groupId using MySQL query (in single query)
I have this table and I want
groupId-30 : reportId -10,45 ,
groupId-31 : reportId-10,44,45 ,
groupId-47 : reportId-10,45
I tried using FIND_IN_SET , like, in but not getting result what I want.