sql server数据库 中通过查询在新表中添加来自其他表的记录 时间条件为当前时间怎么写?
insertintoreal_timeselect*fromhistory_data。。。。。...
insert into real_time select * from history_data 。。。。。
展开
1个回答
展开全部
比如你要2013年5月1号到2013年5月10号的数据
insert into real_time select * from history_data where 时间 between '2013-05-01' and '2013-05-10'
只要某一天的数据
insert into real_time select * from history_data where 时间='2013-05-01'
insert into real_time select * from history_data where 时间 between '2013-05-01' and '2013-05-10'
只要某一天的数据
insert into real_time select * from history_data where 时间='2013-05-01'
追问
我需要的是当前时间的 年月日 时分秒
在history_data中的时间字段为 time
where time=?这是问题
追答
where time=convert(varchar, getdate(), 120 )
这个就是当前时间的年月日时分秒
你可以直接执行
select convert(varchar, getdate(), 120)
看一下结果
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询