Mysql的GROUP_CONCAT()函数使用方法

2015-01-24信息快讯网

GROUP_CONCAT语法与实例代码

语法:

GROUP_CONCAT([DISTINCT] expr [,expr ...][ORDER BY {unsigned_integer | col_name | expr}[ASC | DESC] [,col_name ...]][SEPARATOR str_val])

下面演示一下这个函数,先建立一个学生选课表student_courses,并填充一些测试数据。

SQL代码
CREATE TABLE student_courses (      
    student_id INT UNSIGNED NOT NULL,      
    courses_id INT UNSIGNED NOT NULL,      
    KEY(student_id)      
);      
INSERT INTO student_courses VALUES (1, 1), (1, 2), (2, 3), (2, 4), (2, 5);    


若要查找学生ID为2所选的课程,则使用下面这条SQL:

SQL代码 
mysql> SELECT student_id, courses_id FROM student_courses WHERE student_id=2;      
+------------+------------+      
| student_id | courses_id |      
+------------+------------+      
|          2 |          3 |      
|          2 |          4 |      
|          2 |          5 |      
+------------+------------+      
3 rows IN SET (0.00 sec)  
 

输出结果有3条记录,说明学生ID为2的学生选了3、4、5这3门课程。
放在PHP里,必须用一个循环才能取到这3条记录,如下所示:

 

PHP代码
foreach ($pdo->query("SELECT student_id, courses_id FROM student_courses WHERE student_id=2") as $row) {      
    $result[] = $row['courses_id'];      
}     

而如果采用GROUP_CONCAT()函数和GROUP BY语句就显得非常简单了,如下所示:

 

SQL代码 
mysql> SELECT student_id, GROUP_CONCAT(courses_id) AS courses FROM student_courses WHERE student_id=2 GROUP BY student_id;      
+------------+---------+      
| student_id | courses |      
+------------+---------+      
|          2 | 3,4,5   |      
+------------+---------+      
1 row IN SET (0.00 sec)   


这样php里处理就简单了:

 

PHP代码
$row = $pdo->query("SELECT student_id, GROUP_CONCAT(courses_id) AS courses FROM student_courses WHERE student_id=2 GROUP BY student_id");      
$result = explode(',', $row['courses']);     


分隔符还可以自定义,默认是以“,”作为分隔符,若要改为“|||”,则使用SEPARATOR来指定,例如:

 

SQL代码
SELECT student_id, GROUP_CONCAT(courses_id SEPARATOR '|||') AS courses FROM student_courses WHERE student_id=2 GROUP BY student_id;     

除此之外,还可以对这个组的值来进行排序再连接成字符串,例如按courses_id降序来排:

SQL代码
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;
使用GROUP BY的时候如何统计记录条数 COUNT(*) DISTINCT
PHP用mysql数据库存储session的代码
PHP clearstatcache()函数详解
php 连接mssql数据库 初学php笔记
discuz authcode 经典php加密解密函数解析
Search File Contents PHP 搜索目录文本内容的代码
用Zend Encode编写开发PHP程序
php microtime获取浮点的时间戳
PHP生成网页快照 不用COM不用扩展.
php+mysql事务rollback&commit示例
php date与gmdate的获取日期的区别
Linux下将excel数据导入到mssql数据库中的方法
php cli 方式 在crotab中运行解决
php addslashes和mysql_real_escape_string
PHP has encountered an Access Violation 错误的解决方法
php self,$this,const,static,->的使用
php面向对象全攻略 (十) final static const关键字的使用
学习discuz php 引入文件的方法DISCUZ_ROOT
mysql_fetch_row,mysql_fetch_array,mysql_fetch_assoc的区别
WINDOWS下php5.2.4+mysql6.0+apache2.2.4+ZendOptimizer-3.3.0配置
php中文字符截取防乱码
PHP与MySQL开发中页面乱码的产生与解决
php中cookie的作用域
一家之言的经验之谈php+mysql扎实个人基本功
php+mysql分页代码详解
Mysql和网页显示乱码解决方法集锦
mysql时区问题
使用 MySQL Date/Time 类型
php扩展ZF――Validate扩展
set_include_path在win和linux下的区别
php在线生成ico文件的代码
使用 eAccelerator加速PHP代码的方法
实现php加速的eAccelerator dll支持文件打包下载
56.com视频采集接口程序(PHP)
15种PHP Encoder的比较
给apache2.2加上mod_encoding模块後 php5.2.0 处理url出现bug
使用TinyButStrong模板引擎来做WEB开发
mysql4.1以上版本连接时出现Client does not support authentication protocol问题解决办法
mysql_fetch_assoc和mysql_fetch_row的功能加起来就是mysql_fetch_array
用php来检测proxy
©2014-2024 dbsqp.com