我这里有一个数据库
select * from sample
id | desc
-----+--------------------------------------
1 | blue , big , 100.00 . red, small, 200
我想变成这样
id | color | size | price
------+-------+------+-------
1 | blue |big | 100.00
1 | red |small | 200.00
有没有人知道我该如何查询?我正在使用 MySQL 。谢谢回复 。