mysql笔记--group by,limit用法
Posted 孤独风中一匹狼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql笔记--group by,limit用法相关的知识,希望对你有一定的参考价值。
table: id tag status 1 a 0 2 b 0 3 c 1 4 d 1 一、group by用法 1.与count 联合计数 select status,count(*) from table group by status
status count(*)
0 2
1 2 2.与 group_concat联合使用 select status,group_concat(tag) as tag from table group by status
status tag
0 a,b
1 c,d
二、limit用法 1.分页 设页数为page ,每页记录为a select * from table limit (page-1)*a
以上是关于mysql笔记--group by,limit用法的主要内容,如果未能解决你的问题,请参考以下文章
mysql中“group by、having、order by、limit”的顺序及用法是啥?
mysql中的select语句where条件group by ,having , order by,limit的顺序及用法
09_MySQL笔记-组函数-GROUP BY-LIMIT-多表连接查询-子查询-UNION-索引-视图-存储过程