SqlServer的timestamp数据类型
2009-12-03 15:39:57 来源:WEB开发网--时间戳类型和bigint互相转化示例:by jinjazz
set nocount on
--申明3个时间戳
declare @timeFlag1 bigint
declare @timeFlag2 bigint
declare @timeFlag3 bigint
--建立表,timestamp类型不需要字段名
create table test(timestamp,a int)
--插入1 记录时间戳,@@dbts为数据库时间戳
insert into test select null,1
set @timeFlag1=cast(@@dbts as bigint)
--插入2 记录时间戳
insert into test select null,2
set @timeFlag2=cast(@@dbts as bigint)
--更新3 记录时间戳
update test set a=3 where a=2
set @timeFlag3=cast(@@dbts as bigint)
--时间戳1的记录
select *from test where timestamp=cast(@timeFlag1 as varbinary(8))
--时间戳2的记录已经不存在了
select *from test where timestamp=cast(@timeFlag2 as varbinary(8))
--时间戳3的记录
select *from test where timestamp=cast(@timeFlag3 as varbinary(8))
--删除表
drop table test
set nocount off
/**//*--测试结果
timestamp a
------------------ -----------
0x000000000000B553 1
timestamp a
------------------ -----------
timestamp a
------------------ -----------
0x000000000000B555 3
*/
- ››数据库大型应用解决方案总结
- ››数据结构2--数组
- ››数据源架构模式的活动记录
- ››数据结构C#版线性表(Data Structure)之单链表(Lin...
- ››数据结构C#版线性表(Data Structure)之顺序表(顺序...
- ››SQLServer 游标简介与使用说明
- ››数据就是利润:在欧洲两端,IBM Information Cham...
- ››数据架构师: 您要治理什么?
- ››数据驱动的网络营销和网站运营笔记
- ››数据点:Windows Azure 表存储:不同于传统数据库...
- ››数据医生:Alamance Regional Medical Center 通过...
- ››数据显示iPhone 4销售业绩不及Android手机
更多精彩
赞助商链接