标签:
Sql Server使用 Date表示日期,time表示时间,使用datetime和datetime2表示日期和时间。
1,秒的精度是指使用多少位小数表示1s:
DateTime数据类型秒的精度是3,DateTime2和Time可以控制秒的精度,
语法是DateTime2(n)和time(n),n的取值范围是0-7,默认值是7。
2,DateTime数据类型 存储日期和时间,需要8个字节的固定存储空间,默认的数据格式是yyyy-MM-dd hh:mm:ss.xxx,表示从1753年1月1日到9999年12月31日的日期和时间数据,精确度为3.33毫秒或0.00333秒,即可以表示的日期范围从公元1753年1月1日00:00:00.000 到9999年12月31日23:59:59.997 ,精确到3.33毫秒。
Microsoft SQL Server 用两个 4 字节的整数内部存储 datetime 数据类型的值。第一个 4 字节存储 base date (即 1900 年 1 月 1 日)之前或之后的天数。基础日期是系统参考日期。不允许早于 1753 年 1 月 1 日的 datetime 值。第一个4 字节:1900 年1 月1 日当日为0 ;之前的日期是负数,之后日期是正数。另外一个 4 字节存储以10/3 毫秒数所代表的每天的时间。
declare @dt datetime
使用GetDate()和GetUTCDate()为DateTime类型的变量赋值,这两个函数返回值的类型是DateTime
declare @dt datetime set @dt=getdate()
3,DateTime2数据类型 存储日期和时间,需要的存储空间不固定。根据存储的时间部分 fractional seconds precision来确定DateTime2的Storage Size,6 bytes for precisions less than 3; 7 bytes for precisions 3 and 4. All other precisions require 8 bytes.
DateTime2可以表示比DateTime更精确的时间,默认的数据格式是yyyy-MM-dd hh:mm:ss.nnnnnnn,DateTime2 秒默认的精度是7,即用7位小数表示一秒的精度。
DateTime2的语法是
datetime2 [ (fractional seconds precision) ]
下面两种声明变量的方式是等价的。
declare @dt2 datetime2(7) declare @dt2 datetime2
为DateTime2类型的变量赋值,需要使用SysDateTime()和SysUTCDateTime(),这两个函数返回值的类型是DateTime2
declare @dt2 datetime2 set @dt2=SYSDATETIME()
4,Date数据类型 只存储日期,不存储时间,需要3B的存储空间,默认的数据格式是yyyy-MM-dd,支持的日期范围从0001-01-01到9999-12-31
可以使用日期字符串,getdate()函数和sysdatetime()函数为Date类型的变量赋值
declare @d date set @d=‘2015-07-02‘ set @d=getdate() set @d=SYSDATETIME()
5,Time数据类型 只存储时间,不存储日期,需要5B的存储空间.
Time默认的fractional second precision是7,默认的数据格式是hh:mm:ss.nnnnnnn。
Time数据类型的语法
time [ (fractional second precision) ]
推荐使用时间字符串和sysdatetime()函数为Time类型的变量赋值。不推荐使用GetDate()函数,GetDate()函数返回的是DateTime类型,时间部分的fractional second precision没有time类型高,如果对时间的precision要求高,请使用时间字符串和sysdatetime()函数为Time类型的变量赋值。
--declare @t time(7) DECLARE @t time set @t=‘13:48:43.2840467‘ set @t=SYSDATETIME() --not recommend set @t=GETDATE()
6,A simple example
declare @dt2 datetime2 declare @d date declare @t time --GetDate(),GetUTCDate() 返回值的数据类型是DateTime --SysDateTime(),SysUTCDate() 返回值的数据类型是DateTime2 select @dt=getdate(), @dt2=sysdatetime(), @d = convert(nvarchar(8),getdate(),112), @t=‘13:48:43.2840467‘ select @dt as dt,@dt2 as dt2,@d as d, @t as t
sql server date,datetime,datetime2 和 time 简单介绍
标签:
原文地址:http://www.cnblogs.com/ljhdo/p/4791256.html