我这里有一个数据库
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。 谢谢回复 。