总结
1 --查询时间范围内的数据 2 select * from dbo.point where wtime >'2014-05-01 23:59:59' and wtime< '2014-05-02 00:40:42.000' 3 4 5 delete from point where wtime >'2014-05-01 23:59:59' and wtime< '2014-05-02 00:40:42.000' 6 7 --查询时间范围内的数据,并插入到临时表中 8 select * into a_temp from point where wtime between '2014-05-01 00:00:42.000' and '2014-05-01 00:40:42.000' 9 10 --查询临时表内的数据11 select * from a_temp12 13 14 --更新临时表的时间15 update a_temp set wtime=DATEADD(day,1,wtime) 16 17 --把临时表中的数据插入到表中18 insert into point select pointID,pointtype,pointvalue,pointunit,pointvalue2,pointunit2,wtime from a_temp
以上是内存溢出为你收集整理的【Sqlserver】修改数据库表中的数据:对缺失的数据根据已有的数据进行修补全部内容,希望文章能够帮你解决【Sqlserver】修改数据库表中的数据:对缺失的数据根据已有的数据进行修补所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)