I have one column in MySQL which is return me comma separated value , I want to convert that column in to rows.
Better answer then How to convert comma separated parameters to rows in mysql?
select value from table limit 1
response
value |
---|
honda,activa,pleasure,car |
I want this value to row like
value |
---|
honda |
activa |
pleasure |
car |