mysql一行转多行
mysql一行转多行
·
mysql一行转多行
数据展示将其中的com字段里面的数据根据 , 分割
SELECT
a.id,a.name,a.sex,a.sfzh,a.province,a.district,a.county,
substring_index(
substring_index(
a.com,
',',
b.help_topic_id + 1
),
',' ,- 1
) AS com
FROM
exam_stu
JOIN mysql.help_topic b ON b.help_topic_id < (
length(a.com) - length(
REPLACE (a.com, ',', '')
) + 1
)
解决
更多推荐
已为社区贡献3条内容
所有评论(0)