求SQL语句根据字段分组

例如一个表我查询某个字段selectdatefromuserwheredateisnotnull;结果是:1月1月2月3月2月-----对他们分组应该是3组--1月---... 例如一个表我查询某个字段
select date from user where date is not null;
结果是:

1月
1月
2月
3月
2月
-----
对他们分组
应该是3组
--1月---2月---3月 这种
2 2 1
展开
 我来答
流浪云风
推荐于2018-04-20 · TA获得超过4315个赞
知道大有可为答主
回答量:1119
采纳率:69%
帮助的人:920万
展开全部
首先,使用下面语句:
select date, count(date) cnt from user where date is not null group by date
结果:
date cnt
1月 2
2月 2
3月 1

在上面语句基础上改进,使之与要求结果一致:
select max(case when date = '1月' then cnt else 0 end ) 1月,
max(case when date = '2月' then cnt else 0 end ) 2月,
max(case when date = '3月' then cnt else 0 end ) 3月
from (select date, count(date) cnt from user where date is not null group by date)
ssgo66
2012-11-01 · TA获得超过143个赞
知道小有建树答主
回答量:229
采纳率:0%
帮助的人:127万
展开全部
select date,count(date) from user where date is not null group by date;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
迦若青蓝
2012-11-01 · TA获得超过177个赞
知道小有建树答主
回答量:347
采纳率:0%
帮助的人:164万
展开全部
select date,coun(date) from user where date is not null group by date
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式