- Rongsen.Com.Cn 版权所有 2008-2010 京ICP备08007000号 京公海网安备11010802026356号 朝阳网安编号:110105199号
- 北京黑客防线网安工作室-黑客防线网安服务器维护基地为您提供专业的
服务器维护
,企业网站维护
,网站维护
服务 - (建议采用1024×768分辨率,以达到最佳视觉效果) Powered by 黑客防线网安 ©2009-2010 www.rongsen.com.cn
作者:黑客防线网安SQL维护基地 来源:黑客防线网安SQL维护基地 浏览次数:0 |
--时间戳类型和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
*/
我要申请本站:N点 | 黑客防线官网 | |
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479 |