当前位置:   article > 正文

MYSQL字段以逗号相隔数据处理_mysql 字段存的是ids逗号分割怎么办

mysql 字段存的是ids逗号分割怎么办

表 class 中 有学生Id以逗号相隔存储:如下
用户表:student

idname
1李明
2詹尼
3丹尼

班级表: class

idnamestudent_id
1语文班1,2
2数学班1,3
3英语班1,2,3

现需要查询每个用户参与了几个班?

SELECT
	s.NAME,
	count( c.id ) AS count 
FROM
	student s
	LEFT JOIN class c ON find_in_set( s.id, c.student_id) 
GROUP BY
	s.id;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

现要将班级表中的学生Id拆分为多行数据。

SELECT
	substring_index( substring_index( a.student_id, ',', b.help_topic_id + 1 ), ',',- 1 ) AS result 
FROM
	class a
	JOIN mysql.help_topic b ON b.help_topic_id < ( length( a.student_id ) - length( REPLACE ( student_id, ',', '' ) ) + 1 ) 
GROUP BY
	result; 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/268411
推荐阅读
相关标签
  

闽ICP备14008679号