SQL按月份排序

SQL按月份排序,第1张

Sql server数据库的情况下

如果需要忽略年和日,单纯的使用月份排序是可以的

通过使用MONTH()函数,取出时间格式中的月份

SELECT FROM 你的表

ORDER BY MONTH(日期字段) asc或desc

declare @currMonth as DateTime

declare @prevMonth as DateTime

set @currMonth = cast(cast(year(getdate()) as varchar(4)) + right('0'+cast(month(getdate()) as varchar (2)),2) + '01' as DateTime);

set @prevMonth = DATEADD(month,-1,@currMonth)

--本月

select usid, SUM(cont) as total_cont from biao where [Time] >= @currMonth and [Time] < DATEADD(month,1,@currMonth)

group by usid

order by total_cont desc

--上月

select usid, SUM(cont) as total_cont from biao where [Time] >= @prevMonth and [Time] < @currMonth

group by usid

order by total_cont desc

如果希望用一列专门显示名次,可以使用mssql 2005提供的rank()函数。例如:本月可以这么写

select rank() over(order by sum(cont) desc) as rnk,usid, SUM(cont) as total_cont from biao where [Time] >= @currMonth and [Time] < DATEADD(month,1,@currMonth)

group by usid

order by total_cont desc

SELECT count( ) , left( creattime, 7 ) AS left7time

FROM register

WHERE `creattime` LIKE '2012%'

GROUP BY lefttime

select from 表名 where 时间字段名>=date_sub(curdate(),interval 7 day);

近一周的数据

select DATE_FORMAT(ddateType,'%Y%u') as '年份周数',dshuzhi,dtype

from 'date_dealsheetpage'd

order by ddateType

查询每周

select SUBSTRING(ddateType, 1,7) as '年份月份',dshuzhi,dtype

from 'date_dealsheetpage'd

查询每月

问题一:

SELECT 商品名称,SUM(case when month(销售日期)=1 then 销售数量 else 0 end) 1月,

SUM(case when month(销售日期)=2 then 销售数量 else 0 end) 2月,

SUM(case when month(销售日期)=3 then 销售数量 else 0 end) 3月,

SUM(case when month(销售日期)=4 then 销售数量 else 0 end) 4月,

SUM(case when month(销售日期)=5 then 销售数量 else 0 end) 5月,

SUM(case when month(销售日期)=6 then 销售数量 else 0 end) 6月,

SUM(case when month(销售日期)=7 then 销售数量 else 0 end) 7月

  FROM 表一

   group by 商品名称

   

   问题二:

CREATE PROC P1 AS

   SELECT 商品名称,SUM(case when month(销售日期)=1 then 销售数量 else 0 end) 1月,

SUM(case when month(销售日期)=2 then 销售数量 else 0 end) 2月,

SUM(case when month(销售日期)=3 then 销售数量 else 0 end) 3月,

SUM(case when month(销售日期)=4 then 销售数量 else 0 end) 4月,

SUM(case when month(销售日期)=5 then 销售数量 else 0 end) 5月,

SUM(case when month(销售日期)=6 then 销售数量 else 0 end) 6月,

SUM(case when month(销售日期)=7 then 销售数量 else 0 end) 7月

  FROM 表一

   group by 商品名称

以上就是关于SQL按月份排序全部的内容,包括:SQL按月份排序、mssql数据库asp排行统计数据(按月份查询排行)、mysql 按月份分类统计 查询语句等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9864535.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存