SQLServer 日期函数及日期转换数据类型
一、统计语句
1、--统计当前【>当天00点以后的数据】
select * from 表 where convert(nvarchar, dateandtime, 111) = convert(nvarchar, getdate(), 111) order by dateandtime desc
2、--统计本周
select * from 表 where datediff(week,[dateadd],getdate())=0
3、--统计本月
select * from 表 where datediff(month,[dateadd],getdate())=0
4、统计当前
select * from 表 where datediff(day,[dateadd],getdate())=0
select * from table with(nolock) where convert(varchar(10),[createtime],120) =
convert(varchar(10),getdate(),120)
二、时间函数
1、当前系统日期、时间
select getdate()
2、dateadd 在向指定日期加上一段时间的基础上,返回新的 datetime 值,例如:向日期加上2天
select dateadd(day,2,'2004-10-15') --返回:2004-10-17 00:00:00.000
3、datediff 返回跨两个指定日期的日期和时间边界数
select datediff(day,'2004-09-01','2004-09-18') --返回:17
4、datepart 返回代表指定日期的指定日期部分的整数
select datepart(month, '2004-10-15') --返回 10
5、datename 返回代表指定日期的指定日期部分的字符串
select datename(weekday, '2004-10-15') --返回:星期五
6、day(), month(),year() --可以与datepart对照一下
select 当前日期=convert(varchar(10),getdate(),120),
select 当前时间=convert(varchar(8),getdate(),114),
select datename(dw,'2004-10-15')
select 本年第多少周=datename(week,'2004-10-15'),
select 今天是周几=datename(weekday,'2004-10-15')
7、求相差天数
select datediff(day,'2004-01-01',getdate())
8、一个月第一天的
select dateadd(mm, datediff(mm,0,getdate()), 0)
9、本周的星期一
select dateadd(wk, datediff(wk,0,getdate()), 0)
select dateadd(wk,datediff(wk,0,getdate()),6)
10、一年的第一天
select dateadd(yy, datediff(yy,0,getdate()), 0)
11、季度的第一天
select dateadd(qq, datediff(qq,0,getdate()), 0)
12、当天的半夜
select dateadd(dd, datediff(dd,0,getdate()), 0)
13、上个月的最后一天
select dateadd(ms,-3,dateadd(mm, datediff(mm,0,getdate()), 0))
14、去年的最后一天
select dateadd(ms,-3,dateadd(yy, datediff(yy,0,getdate()), 0))
15、本月的最后一天
select dateadd(ms,-3,dateadd(mm, datediff(m,0,getdate())+1, 0))
16、本年的最后一天
select dateadd(ms,-3,dateadd(yy, datediff(yy,0,getdate())+1, 0))
17、本月的第一个星期一
select dateadd(wk, datediff(wk,0,dateadd(dd,6-datepart(day,getdate()),getdate())), 0)
18、查询本周注册人数
select count(*) from [user]
where datediff(week,create_day-1,getdate())=0
19、上周注册人数
select count(*) from [user]
where datediff(week,create_day-1,getdate())=1
20、本月注册人数
select count(*) from [user]
where datediff(month,create_day,getdate())=0
21、上月注册人数
select count(*) from [user]
where datediff(month,create_day,getdate())=1
如果要效率,用一下方式
22、查询本周注册人数
select count(*) from [user]
where create_day>=dateadd(day,2-datepart(weekday,getdate()),convert(varchar,getdate(),112))
and create_day<dateadd(day,9-datepart(weekday,getdate()),convert(varchar,getdate(),112))
23、上周注册人数
select count(*) from [user]
where create_day>=dateadd(day,-5-datepart(weekday,getdate()),convert(varchar,getdate(),112))
and create_day<dateadd(day,2-datepart(weekday,getdate()),convert(varchar,getdate(),112))
24、本月注册人数
select count(*) from [user]
where create_day>=dateadd(day,1-day(getdate()),convert(varchar,getdate(),112))
and create_day<dateadd(month,1,dateadd(day,1-day(getdate()),convert(varchar,getdate(),112)))
25、上月注册人数
select count(*) from [user]
where create_day>=dateadd(month,-1,dateadd(day,1-day(getdate()),convert(varchar,getdate(),112)))
and create_day<dateadd(day,1-day(getdate()),convert(varchar,getdate(),112))
26、本周
select count(*) from user
where datediff(dd,create_day,getdate()) <= datepart(dw,getdate())
27、上周
select count(*) from user
where datediff(dd,create_day,(getdate() - datepart(dw,getdate()))) <= 7
28、本月
select count(*) from user
where datepart(mm,create_day) = datepart(mm,getdate())
29、上月
select count(*) from user
where datepart(mm,create_day) = datepart(mm,getdate()) - 1
30、本周注册人数
select count(*) from [user]
where datediff(dd,create_day,getdate()) <= datepart(dw,getdate())
31、上周注册人数
select count(*) from [user]
where datediff(dd,create_day,(getdate() - datepart(dw,getdate()))) <= 7
32、本月注册人数
select count(*) from [user]
where datepart(mm,create_day) = datepart(mm,getdate())
33、上月注册人数
select count(*) from [user]
where datepart(mm,create_day) = datepart(mm,getdate()) - 1
34、查询今日所有
select * from feedback where (datediff(d,fedtime,getdate())=0) order by fedid desc
month(create_day)=month(getdate())本月
month(create_day)=month(getdate())-1 上月
今天的所有数据:select * from 表名 where datediff(dd,datetime类型字段,getdate())=0
昨天的所有数据:select * from 表名 where datediff(dd,datetime类型字段,getdate())=1
7天内的所有数据:select * from 表名 where datediff(dd,datetime类型字段,getdate())<=7
30天内的所有数据:select * from 表名 where datediff(dd,datetime类型字段,getdate())<=30
本月的所有数据:select * from 表名 where datediff(mm,datetime类型字段,getdate())=0
本年的所有数据:select * from 表名 where datediff(yy,datetime类型字段,getdate())=0
系统函数:
系统函数 |
|
函数 |
参数/功能 |
getdate( ) |
返回系统目前的日期与时间 |
datediff (interval,date1,date2) |
以interval 指定的方式,返回date2 与date1两个日期之间的差值 date2-date1 |
dateadd (interval,number,date) |
以interval指定的方式,加上number之后的日期 |
datepart (interval,date) |
返回日期date中,interval指定部分所对应的整数值 |
datename (interval,date) |
返回日期date中,interval指定部分所对应的字符串名称 |
参数 interval的设定值:
值 |
缩写(sql server) |
access 和 asp |
说明 |
year |
yy |
yyyy |
年 1753 ~ 9999 |
quarter |
|
q |
季 1 ~ 4 |
month |
mm |
m |
月1 ~ 12 |
day of year |
dy |
y |
一年的日数,一年中的第几日 1-366 |
day |
dd |
d |
日,1-31 |
weekday |
dw |
w |
一周的日数,一周中的第几日 1-7 |
week |
wk |
ww |
周,一年中的第几周 0 ~ 51 |
hour |
hh |
h |
时0 ~ 23 |
minute |
mi |
n |
分钟0 ~ 59 |
second |
ss |
s |
秒 0 ~ 59 |
millisecond |
ms |
- |
毫秒 0 ~ 999 |
access 和 asp 中用date()和now()取得系统日期时间;其中datediff,dateadd,datepart也同是能用于access和asp中,这些函数的用法也类似
举例:
1.getdate() 用于sql server :select getdate()
2.datediff('s','2005-07-20','2005-7-25 22:56:32')返回值为 514592 秒
datediff('d','2005-07-20','2005-7-25 22:56:32')返回值为 5 天
3.datepart('w','2005-7-25 22:56:32')返回值为 2 即星期一(周日为1,周六为7)
datepart('d','2005-7-25 22:56:32')返回值为 25即25号
datepart('y','2005-7-25 22:56:32')返回值为 206即这一年中第206天
datepart('yyyy','2005-7-25 22:56:32')返回值为 2005即2005年
sql 取当天或当月的记录
表中的时间格式是这样的:2007-02-02 16:50:08.050, 如果直接和当天的时间比较,就总得不到准确数据,但是我们可以把这种格式的时间[格式化]成 2007-02-02,也就是只有年-月-日,然后把当天的时间也格式化成 年-月-日的格式.
这样,思路就出来了!
我们格式化日期要用到 convert()这个函数,要用到3个参数,首先来格式化当天的日期,convert(varchar(10),getdate(),120)
这样我们就可以把当天的日期格式化为: 2007-2-2,然后格式化数据库表中的日期
convert(varchar(10),timefiled,120),最后我们就可以用一条sql语句得到当天的数据了.
例如:
转自网络
程序代码
select * from view_countbill where convert(varchar(10),[time],120) = convert(varchar(10),getdate(),120)
注意:
convert()函数中的各个参数的意义,第一个参数,varchar(10)是目标系统所提供的数据类型,包括 bigint 和 sql_variant。不能使用用户定义的数据类型。第二个参数是你要转换的字段,我这里是[time]。最后一个就是格式了,这个值是可选的:20或者120都可以,它遵循的是[odbc 规范],输入/输出样式为:yyyy-mm-dd hh:mm:ss[.fff]
具体的可以参考sql server的联机帮助!
======================================================
t-sql查找表中当月的记录
思路:将要查找的时间字段用month()函数取出其中的月份,然后再取出当前月的月份,对比就ok了
例:
程序代码
select * from view_countbill where month([time]) = month(getdate())
convert() 函数----日期转换为新数据类型,以用不同的格式显示日期/时间数据
语法:convert(data_type(length),data_to_be_converted,style)
参数含义:data_type(length) 规定目标数据类型(带有可选的长度)。data_to_be_converted 含有需要转换的值。style 规定日期/时间的输出格式。
日期格式样式,借以将datetime或smalldatetime数据转换为字符数据(nchar、nvarchar、char、varchar、nchar或nvarchar数据类型);或者字符串格式样式,借以将float、real、money或smallmoney数据转换为字符数据(nchar、nvarchar、char、varchar、nchar或nvarchar数据类型)。
sql server 支持使用科威特算法的阿拉伯样式中的数据格式。
在表中,左侧的两列表示将datetime或smalldatetime转换为字符数据的style值。给style值加 100,可获得包括世纪数位的四位年份 (yyyy)。
style值如下
不带世纪数位 (yy) | 带世纪数位 (yyyy) |
标准 |
输入/输出** |
---|---|---|---|
- | 0 或 100 (*) | 默认值 | mon dd yyyy hh:miam(或 pm) |
1 | 101 | 美国 | mm/dd/yyyy |
2 | 102 | ansi | yy.mm.dd |
3 | 103 | 英国/法国 | dd/mm/yy |
4 | 104 | 德国 | dd.mm.yy |
5 | 105 | 意大利 | dd-mm-yy |
6 | 106 | - | dd mon yy |
7 | 107 | - | mon dd, yy |
8 | 108 | - | hh:mm:ss |
- | 9 或 109 (*) | 默认值 + 毫秒 | mon dd yyyy hh:mi:ss:mmmam(或 pm) |
10 | 110 | 美国 | mm-dd-yy |
11 | 111 | 日本 | yy/mm/dd |
12 | 112 | iso | yymmdd |
- | 13 或 113 (*) | 欧洲默认值 + 毫秒 | dd mon yyyy hh:mm:ss:mmm(24h) |
14 | 114 | - | hh:mi:ss:mmm(24h) |
- | 20 或 120 (*) | odbc 规范 | yyyy-mm-dd hh:mm:ss[.fff] |
- | 21 或 121 (*) | odbc 规范(带毫秒) | yyyy-mm-dd hh:mm:ss[.fff] |
- | 126(***) | iso8601 | yyyy-mm-dd thh:mm:ss:mmm(不含空格) |
- | 130* | 科威特 | dd mon yyyy hh:mi:ss:mmmam |
- | 131* | 科威特 | dd/mm/yy hh:mi:ss:mmmam |
* 默认值(style0 或 100、9 或 109、13 或 113、20 或 120、21 或 121)始终返回世纪数位 (yyyy)。
** 当转换为datetime时输入;当转换为字符数据时输出。
*** 专门用于 xml。对于从datetime或smalldatetime到character数据的转换,输出格式如表中所示。对于从float、money或smallmoney到character数据的转换,输出等同于style2。对于从real到character数据的转换,输出等同于style1。
重要 默认情况下,sql server 根据截止年份 2049 解释两位数字的年份。即,两位数字的年份 49 被解释为 2049,而两位数字的年份 50 被解释为 1950。许多客户端应用程序(例如那些基于 ole 自动化对象的客户端应用程序)都使用 2030 作为截止年份。sql server 提供一个配置选项("两位数字的截止年份"),借以更改 sql server 所使用的截止年份并对日期进行一致性处理。然而最安全的办法是指定四位数字年份。
当从smalldatetime转换为字符数据时,包含秒或毫秒的样式将在这些位置上显示零。当从datetime或smalldatetime值进行转换时,可以通过使用适当的char或varchar数据类型长度来截断不需要的日期部分。
=========================================================================
如果只要取yyyy-mm-dd格式时间, 就可以用 convert(nvarchar(10),field,120)
120 是格式代码, nvarchar(10) 是指取出前10位字符.
语句及查询结果:
select convert(varchar(100), getdate(), 0): 05 16 2006 10:57am
select convert(varchar(100), getdate(), 1): 05/16/06
select convert(varchar(100), getdate(), 2): 06.05.16
select convert(varchar(100), getdate(), 3): 16/05/06
select convert(varchar(100), getdate(), 4): 16.05.06
select convert(varchar(100), getdate(), 5): 16-05-06
select convert(varchar(100), getdate(), 6): 16 05 06
select convert(varchar(100), getdate(), 7): 05 16, 06
select convert(varchar(100), getdate(), 8): 10:57:46
select convert(varchar(100), getdate(), 9): 05 16 2006 10:57:46:827am
select convert(varchar(100), getdate(), 10): 05-16-06
select convert(varchar(100), getdate(), 11): 06/05/16
select convert(varchar(100), getdate(), 12): 060516
select convert(varchar(100), getdate(), 13): 16 05 2006 10:57:46:937
select convert(varchar(100), getdate(), 14): 10:57:46:967
select convert(varchar(100), getdate(), 20): 2006-05-16 10:57:47
select convert(varchar(100), getdate(), 21): 2006-05-16 10:57:47.157
select convert(varchar(100), getdate(), 22): 05/16/06 10:57:47 am
select convert(varchar(100), getdate(), 23): 2006-05-16
select convert(varchar(100), getdate(), 24): 10:57:47
select convert(varchar(100), getdate(), 25): 2006-05-16 10:57:47.250
select convert(varchar(100), getdate(), 100): 05 16 2006 10:57am
select convert(varchar(100), getdate(), 101): 05/16/2006
select convert(varchar(100), getdate(), 102): 2006.05.16
select convert(varchar(100), getdate(), 103): 16/05/2006
select convert(varchar(100), getdate(), 104): 16.05.2006
select convert(varchar(100), getdate(), 105): 16-05-2006
select convert(varchar(100), getdate(), 106): 16 05 2006
select convert(varchar(100), getdate(), 107): 05 16, 2006
select convert(varchar(100), getdate(), 108): 10:57:49
select convert(varchar(100), getdate(), 109): 05 16 2006 10:57:49:437am
select convert(varchar(100), getdate(), 110): 05-16-2006
select convert(varchar(100), getdate(), 111): 2006/05/16
select convert(varchar(100), getdate(), 112): 20060516
select convert(varchar(100), getdate(), 113): 16 05 2006 10:57:49:513
select convert(varchar(100), getdate(), 114): 10:57:49:547
select convert(varchar(100), getdate(), 120): 2006-05-16 10:57:49
select convert(varchar(100), getdate(), 121): 2006
select convert(varchar(100), getdate(), 126): 2006-05-16t10:57:49.827
select convert(varchar(100), getdate(), 130): 18 ???? ?????? 1427 10:57:49:907am
select convert(varchar(100), getdate(), 131): 18/04/1427 10:57:49:920am
上一篇: redis数据类型
推荐阅读
-
MySQL的时间差函数(TIMESTAMPDIFF、DATEDIFF)、日期转换计算函数(date_add、day、date_format、str_to_date)
-
Python 日期的转换及计算的具体使用详解
-
PL/SQL 日期时间类型函数及运算
-
mysql From_unixtime及UNIX_TIMESTAMP及DATE_FORMAT日期函数
-
mssql sqlserver 如何将一个日期数据转换为"年份-月份"的格式呢?
-
php的日期处理函数及uchome的function_coomon中日期处理函数的研究
-
oracle日期格式转换及日期截取,按月统计,按日统计详解
-
Springboot日期转换器实现代码及示例
-
VBS的字符串及日期操作相关函数
-
Sqlserver 报错“参数数据类型 ntext/text 对于 replace 函数的参数 1 无效”的解决方案及原理分析扩展