杯具程序员
为系统而生,为框架而死,为debug奋斗一辈子;
     吃符号的亏,上大小写的当,最后死在需求上。
摘要: --时间戳类型和bigint互相转化示例: 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 in 阅读全文
posted @ 2011-07-12 14:59 杯具程序员 阅读(3359) 评论(0) 推荐(0)