I have some fields in the database that are comma selerated, something like: a,b,c,d,e
and I want to convert them into:
["a","b","c","d","e"]
I know how to do it in nodejs / any other language, but I need to do it directly on the mysql
Possible?
Thanks