I have menu_master table like this
id name holder
1 a 1,2,4
2 b 49,4
In the output i only want 1,2,4,49
SELECT GROUP_CONCAT(holder)
FROM menu_master
If I am using group_concat it gives me all result like 1,2,4,49,4.