mysql怎么返回一个字段逗号分隔后的所有数据的sql
- 场景描述
- 5.7版本MySql : 完整sql如下
- sql解析
- 8.0 版本MySql : 完整sql如下
场景描述
mysql有一张表比如result表,表中有个字段场景id:scene_id,这个id存储的值可以是单个的id也可以是多个id用逗号拼接起来的,现在需要查询总共有多少个场景。 需要对场景id进行分割然后去重。
5.7版本MySql : 完整sql如下
SELECTdistinctsubstring_index( substring_index( pd.scene_id, ',', b.help_topic_id + 1 ), ',', - 1 ) AS split_valueFROM result pdINNER JOIN mysql.help_topic b ON b.help_topic_id < ( length( pd.scene_id ) - length( REPLACE ( pd.scene_id, ',', '' )) + 1 )
sql解析
mysql.help_topic是 MySQL 数据库自带的一个系统表,其中比较关键的是help_topic_id列,这是一个自增的整数列,用于唯一标识每个帮助主题条目
b.help_topic_id 返回的是从0开始到b.help_topic_id < length
substring_index( pd.scene_id, ‘,’, b.help_topic_id + 1 ) 截取的是第b.help_topic_id + 1逗号前面的值
substring_index( substring_index( pd.scene_id, ‘,’, b.help_topic_id + 1 ), ‘,’, - 1 ) 截取的是第b.help_topic_id + 1逗号前面的值,的基础上逗号分隔后的最后一个值
8.0 版本MySql : 完整sql如下
SELECT split_value
FROM (SELECT REGEXP_SPLIT_TO_TABLE(your_column_name, ',') AS split_valueFROM resultWHERE some_condition) AS subquery;