Mysql单行字段拆分多行[数据库教程]
不需要自建自增的辅助表,Mysql自带help_topic可以使用;
SELECT SUBSTRING_INDEX( SUBSTRING_INDEX( target_column, ‘,‘, b.help_topic_id + 1 ), ‘,‘, -1 ) AS coop_branchFROMsurvey_draft AS aJOIN mysql.help_topic AS b ON b.help_topic_id < ( length( a.target_column ) - length( REPLACE ( a.target_column, ‘,‘, ‘‘ ) ) + 1 )
Mysql单行字段拆分多行
原文:https://www.cnblogs.com/mzc1997/p/13177658.html
以上是 Mysql单行字段拆分多行[数据库教程] 的全部内容, 来源链接: utcz.com/z/534266.html