SqlServer的 timestamp数据类型

-- 时间戳类型和bigint互相转化示例:byjinjazz

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

/**/ /*--测试结果
timestampa
-----------------------------
0x000000000000B5531

timestampa
-----------------------------

timestampa
-----------------------------
0x000000000000B5553
*/
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值