In mysql query am using grpup_concat function to concatenate the rows. It resulting the correct values but it is adding separator. for ex: my result for specified column as below.
{10,20}|,{20,30}|,{40,50} // pipe symbol i have added as a separator but it is again adding comma as a separator.
desired result: {10,20}|{20,30}|{40,50}
let me know how to remove the separator. Thanks in advance.