sql日期季度
A. sql server如何按季度分组统计所有的数据
和按月份组的原理是一样的吧!
按月分组
按季度分组和按月分组的区别应该就是时间段的区别吧!
selectcasewhenmonth(date)=1ormonth(date)=2
ormonth(date)=3then'一季度'
whenmonth(date)=4ormonth(date)=5
ormonth(date)=6then'2季度'
whenmonth(date)=7ormonth(date)=8
ormonth(date)=9then'3季度'
whenmonth(date)=10ormonth(date)=11
ormonth(date)=12then'4季度'
else''end,sum(数量)
fromtable
groupby
casewhenmonth(date)=1ormonth(date)=2
ormonth(date)=3then'一季度'
whenmonth(date)=4ormonth(date)=5
ormonth(date)=6then'2季度'
whenmonth(date)=7ormonth(date)=8
ormonth(date)=9then'3季度'
whenmonth(date)=10ormonth(date)=11
ormonth(date)=12then'4季度'
else''end
B. 用sql语句求本季度比上一个季度多多少天
--计算给定日期所在季度的天数
declare @date datetime;
set @date = getdate()
--本季度第一天与下季度第一天所差的天数
select datediff(day,dateadd(quarter,datediff(quarter,0,@date),0),dateadd(quarter,1+datediff(quarter,0,@date),0))
--借助变量简化
select @date = dateadd(quarter,datediff(quarter,0,@date),0) --本季度第一天
select datediff(day,@date,dateadd(quarter,1,@date))
go
算出本季及前一季各自的天数,再减一下,即可。
C. mysql怎么用sql语句把日期转换为季度或者年度
什么数据库
oracle 的话
to_char(sysdate,'') 是年
ceil(to_char(sysdate,'mm')) 是季度
D. SQL数据库代码如何根据日期获取属于哪个季度
SELECT datepart(quarter,GETDATE() )
E. 怎么用Sql语句把日期转换为季度或者年度
select cast(datepart(q,datefiled) as varchar(2))+'季度'
F. Sql server判断某一日期是在第几季度
DECLARE @month int
set @month=DATEPART(M,CONVERT(varchar(20),GETDATE(),112 ))
select @month as 当前月份,
CASE when @month between 1 and 3 then '第一季度'
when @month between 4 and 6 then '第二季度'
when @month between 7 and 9 then '第三季度'
else '第四季度'
end as 季度
G. Sql server判断某一日期是在第几季度
DECLARE @month int
set @month=DATEPART(M,CONVERT(varchar(20),GETDATE(),112 ))
select @month as 当前月份,
CASE when @month between 1 and 3 then '第一季度'
when @month between 4 and 6 then '第二季度'
when @month between 7 and 9 then '第三季度'
else '第四季度'
end as 季度
H. sql语句中,我怎么计算一个月份是第几个季度的例:7月份,用一个算法,直接知道他是属于第三季度
select case
when month between 1 and 3 then '一季度'
when month between 4 and 6 then '二季度'
when month between 7 and 9 then '三季度'
when month between 10 and 12 then '四季度'
end as 季度
from table
这样就可以了
I. SQL如何获得本季度第一天,一年的第一天,本月的最后一天
你好,以下是获取年,季度,天日期的所有方式:
DECLARE @dt datetime
SET @dt=GETDATE()
DECLARE @number int
SET @number=3
--1.指定日期该年的第一天或最后一天
--A. 年的第一天
SELECT CONVERT(char(5),@dt,120)+'1-1'
--B. 年的最后一天
SELECT CONVERT(char(5),@dt,120)+'12-31'
--2.指定日期所在季度的第一天或最后一天
--A. 季度的第一天
SELECT CONVERT(datetime,
CONVERT(char(8),
DATEADD(Month,
DATEPART(Quarter,@dt)*3-Month(@dt)-2,
@dt),
120)+'1')
--B. 季度的最后一天(CASE判断法)
SELECT CONVERT(datetime,
CONVERT(char(8),
DATEADD(Month,
DATEPART(Quarter,@dt)*3-Month(@dt),
@dt),
120)
+CASE WHEN DATEPART(Quarter,@dt) in(1,4)
THEN '31'ELSE '30' END)
--C. 季度的最后一天(直接推算法)
SELECT DATEADD(Day,-1,
CONVERT(char(8),
DATEADD(Month,
1+DATEPART(Quarter,@dt)*3-Month(@dt),
@dt),
120)+'1')
--3.指定日期所在月份的第一天或最后一天
--A. 月的第一天
SELECT CONVERT(datetime,CONVERT(char(8),@dt,120)+'1')
--B. 月的最后一天
SELECT DATEADD(Day,-1,CONVERT(char(8),DATEADD(Month,1,@dt),120)+'1')
--C. 月的最后一天(容易使用的错误方法)
SELECT DATEADD(Month,1,DATEADD(Day,-DAY(@dt),@dt))
--4.指定日期所在周的任意一天
SELECT DATEADD(Day,@number-DATEPART(Weekday,@dt),@dt)
--5.指定日期所在周的任意星期几
--A. 星期天做为一周的第1天
SELECT DATEADD(Day,@number-(DATEPART(Weekday,@dt)+@@DATEFIRST-1)%7,@dt)
--B. 星期一做为一周的第1天
SELECT DATEADD(Day,@number-(DATEPART(Weekday,@dt)+@@DATEFIRST-2)%7-1,@dt)
J. SQL语句:取某个日期所在季度的最后一天,精确到时分秒
取季度数字然后再CASE WHEN 就好啦﹐参考以下代码
DECLARE@TBTABLE(TIMEDATETIME)
INSERTINTO@TBVALUES('2013-02-0911:22:59.997')
INSERTINTO@TBVALUES('2013-05-0713:12:51.333')
INSERTINTO@TBVALUES('2013-07-0715:42:22.633')
INSERTINTO@TBVALUES('2013-10-2019:29:22.783')
SELECT*,CASEWHENDATEPART(QQ,TIME)=1THENDATEADD(D,-1,'2013-04-0123:59:59.997')
WHENDATEPART(QQ,TIME)=2THENDATEADD(D,-1,'2013-07-0123:59:59.997')
WHENDATEPART(QQ,TIME)=3THENDATEADD(D,-1,'2013-10-0123:59:59.997')
WHENDATEPART(QQ,TIME)=4THENDATEADD(D,-1,'2014-01-0123:59:59.997')
ENDASQUARTER
FROM@TB
效果:
TIME QUARTER
---------------------------------- - -----------------------------------
2013-02-09 11:22:59.997 2013-03-31 23:59:59.997
2013-05-07 13:12:51.333 2013-06-30 23:59:59.997
2013-07-07 15:42:22.633 2013-09-30 23:59:59.997
2013-10-20 19:29:22.783 2013-12-31 23:59:59.997