Mysql字符串分割
可能的重复:
Mysql可以拆分列吗?
我有一个字符串列和一个逗号分隔列,如下所示
例子, 我有表格,
Col1 | col2
1 | a,b,c
2 | d,e
从上面,我想
Col1,Col2
1 ,a
1 ,b
1 ,c
2 ,d
2 ,e
如何实现这个
它不是精确的重复。
Possible Duplicate:
Can Mysql Split a column ?
I have one string column and one comma separated column as below
Example,
I have the table,
Col1 | col2
1 | a,b,c
2 | d,e
From above, I want
Col1,Col2
1 ,a
1 ,b
1 ,c
2 ,d
2 ,e
How to achieve this
It is not the Exact Duplicate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用存储过程来完成此操作
You can do this using a stored procedure