如下图数据
需要将数据处理成
在这里我们需要用到mysql函数SUBSTRING_INDEX和mysql表mysql.help_topic
substring_index(str,delim,count)
通过如下语句,则可实现一行转多行,最终实现上图的效果
update 表名 set cla='3' where cla='1'update 表名 set cla='4' where cla='2'
update 表名 set cla='5' where cla='1'
update 表名 set cla='6' where cla='2'
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)