标题:
SQL Server 日期转换格式
[打印本页]
作者:
erina.pan
时间:
2017-6-20 10:06
标题:
SQL Server 日期转换格式
SQL Server中文版的默认的日期字段datetime格式是yyyy-mm-dd Thh:mm:ss.mmm
例如:
select getdate()
2004-09-12 11:06:08.177
这对于在要不同数据库间转移数据或者习惯oracle日期格式YYYY-MM-DD HH24:MI:SS的人多少有些不方便.
我整理了一下SQL Server里面可能经常会用到的日期格式转换方法:
举例如下:
select CONVERT(varchar, getdate(), 120 )
2004-09-12 11:06:08
select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),'-',''),' ',''),':','')
20040912110608
select CONVERT(varchar(12) , getdate(), 111 )
2004/09/12
select CONVERT(varchar(12) , getdate(), 112 )
20040912
select CONVERT(varchar(12) , getdate(), 102 )
2004.09.12
其它不常用的日期格式转换方法:
select CONVERT(varchar(12) , getdate(), 101 )
09/12/2004
select CONVERT(varchar(12) , getdate(), 103 )
12/09/2004
select CONVERT(varchar(12) , getdate(), 104 )
12.09.2004
select CONVERT(varchar(12) , getdate(), 105 )
12-09-2004
select CONVERT(varchar(12) , getdate(), 106 )
12 09 2004
select CONVERT(varchar(12) , getdate(), 107 )
09 12, 2004
select CONVERT(varchar(12) , getdate(), 108 )
11:06:08
select CONVERT(varchar(12) , getdate(), 109 )
09 12 2004 1
select CONVERT(varchar(12) , getdate(), 110 )
09-12-2004
select CONVERT(varchar(12) , getdate(), 113 )
12 09 2004 1
select CONVERT(varchar(12) , getdate(), 114 )
11:06:08.177
SQL语句中Convert类型转换问题
sql语句如下:
select convert(varchar(500),itemDate) from table
字段itemDate是日期格式,想将日期在sql语句中转换成如下格式输出 2005-13-13 12:12:12
如何实现?
select convert(varchar(500),itemDate,120) from table
或
select convert(varchar(500),itemDate,121) from table --秒的精度更大
日期比较:
select * from table where datetime between convert(datetime,'2006-04-01') and convert(datetime,'2006-04-05'')
DATEADD
在向指定日期加上一段时间的基础上,返回新的 datetime 值。
语法
DATEADD ( datepart , number, date )
如:select DATEADD(day,1,getdate())
返回今天的时间加上一天后的时间
如今天是 2008-12-27 11:06:49.420 则返回2008-12-28 11:06:49.420
DATEDIFF
返回跨两个指定日期的日期和时间边界数。
语法
DATEDIFF ( datepart , startdate , enddate )
如:select DATEDIFF(minute,getdate(),'2009-01-01 22:00:00')
返回现在的时间跟2009-01-01 22:00:00 差几分钟。
欢迎光临 赛捷软件论坛 (http://114.215.210.180/bbs/)
Powered by Discuz! 7.2