mysql 逗号分隔成多列数据
Posted 黑白配
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 逗号分隔成多列数据相关的知识,希望对你有一定的参考价值。
说明 t_split 是临时表,分割几个,里面id字段分别是1-5
SELECT
substring_index( substring_index( a.content, ‘,‘, b.id + 1 ), ‘,‘,- 1 ) product_id
FROM
t_exhibition_booth_cell a
JOIN t_exhibition_booth ON t_exhibition_booth.id = a.booth_id
JOIN t_exhibition ON t_exhibition.id = t_exhibition_booth.exhibition_id
JOIN t_split b ON b.id <= ( length( a.content ) - length( REPLACE ( a.content, ‘,‘, ‘‘ ) ) + 1 )
WHERE
t_exhibition.CODE = ‘homepage5.18‘
以上是关于mysql 逗号分隔成多列数据的主要内容,如果未能解决你的问题,请参考以下文章