sql GROUP_CONCAT用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql GROUP_CONCAT用法相关的知识,希望对你有一定的参考价值。

SELECT
	student_id,
	GROUP_CONCAT(
		courses_id
		ORDER BY
			courses_id DESC
	) AS courses
FROM
	student_courses
WHERE
	student_id = 2
GROUP BY
	student_id;

以上是关于sql GROUP_CONCAT用法的主要内容,如果未能解决你的问题,请参考以下文章

Mysql count group_concat 高级用法(count 过滤条件,group_concat过滤条件)

MySQL教程之concat以及group_concat的用法

Mysql concat() group_concat()用法

mysql中concat 和 group_concat()的用法

mysql中concat 和 group_concat()的用法

MySQL的concat以及group_concat的用法