码迷,mamicode.com
首页 > 数据库 > 详细

mysql 逗号分隔成多列数据

时间:2019-03-19 10:33:09      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:mys   boot   length   bst   sel   sub   substring   index   replace   

说明 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 逗号分隔成多列数据

标签:mys   boot   length   bst   sel   sub   substring   index   replace   

原文地址:https://www.cnblogs.com/zhangjian816/p/10556681.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!