SQL2008使用日期时间数据类型
2008-09-28 10:06:54 来源:WEB开发网如PST将会是-420,而GMT+1则是60.
DATEPART 函数已经被扩展为从一个已知的时区返回时区的值,TZoffset值返回一个数字,表示与GMT标准时间相差的分钟数。因此,GMT + 8) 将返回的值为480。
查看并 选中 下列代码并点击Execute:
select currenttime,SWITCHOFFSET ( currenttime, datepart(TZoffset,sysdatetimeoffset())) as TimeinCurrentTimezone
from tbl_timezones)
练习 2:处理日期和时间数据类型
在本练习中,您将看到以前SQL Server版本当中,datetime与smalldatetime数据类型的一些问题,然后您将会采取一些行动来解决这些问题。
点击Start | All Programs | Microsoft SQL Server 2008 | SQL Management Studio ,启动SQL Server Management Studio。
在Connect to Server对话框中输入下列信息,然后点击 Connect 按钮:
Server type: Database Engine
Server name: (local)
Authentication: Windows Authentication
创建一个数据表来处理数据类型
查看并 选中 下列代码并点击Execute:
USE LABDB
GO
if object_id('tbl_historicalEvents') is not null
drop table tbl_historicalEvents
create table tbl_historicalEvents (EventID int IDENTITY (1,1),
Eventname nvarchar(200), Eventdate datetime)
查看并 选中 下列代码并点击Execute:
insert into tbl_historicalEvents (Eventname, Eventdate)
values ('Birthday of Wolfgang Amadeus Mozart', '01/27/1756')
insert into tbl_historicalEvents (Eventname, Eventdate)
values ('Universal declaration of Human Rights', '12/10/1948')
insert into tbl_historicalEvents (Eventname, Eventdate)
values ('Birthday of Johan Sebastian Bach', '03/21/1685')
注意: 最后一条语句将会出现如下错误
Msg 242, Level 16, State 3, Line 17
The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
注意: 发生这个错误的主要原因是,您希望插入到datetime数据类型当中的值超出了可以接受的范围 (从01-01-1753 到 9999-12-31)
查看并 选中 下列代码并点击Execute:
USE LABDB
GO
if object_id('tbl_historicalEvents') is not null
drop table tbl_historicalEvents
create table tbl_historicalEvents (EventID int IDENTITY (1,1),
Eventname nvarchar(200),
Eventdate date)
查看并 选中 下列代码并点击Execute:
insert into tbl_historicalEvents (Eventname, Eventdate)
values ('Birthday of Wolfgang Amadeus Mozart', '01/27/1756')
insert into tbl_historicalEvents (Eventname, Eventdate)
values ('Universal declaration of Human Rights', '12/10/1948')
insert into tbl_historicalEvents (Eventname, Eventdate)
values ('Birthday of Johan Sebastian Bach', '03/21/1685')
注意: 您现在将发现最后一个INSERT语句将可以正常执行,因为使用了date 数据类型。
关闭所有应用程序并不要保存所有更改。
关闭Virtual PC 并不要保存更改。
- ››sql server自动生成批量执行SQL脚本的批处理
- ››使用linux中的quota教程
- ››sql server 2008亿万数据性能优化
- ››SQL Server 2008清空数据库日志方法
- ››sqlserver安装和简单的使用
- ››SQL Sever 2008 R2 数据库管理
- ››使用jxl生成带动态折线图的excel
- ››SQL SERVER无法安装成功,sqlstp.log文件提示[未发...
- ››Sql Server中通过父记录查找出所有关联的子记录
- ››SqlServer触发器、存储过程和函数
- ››SQL Server 中的事务(含义,属性,管理)
- ››Sqlite数据库插入和读取图片数据
更多精彩
赞助商链接