有没有办法将日期时间值(getdate()
)插入/更新到如下所示的临时表中:
select id, null as testdate
into #temp_table
然后声明:
update #temp_table
set testdate=getdate()
我收到错误:
无法将datetime转换为int ...
感谢。
答案 0 :(得分:15)
将选择中的列投射到
中select id, cast(null as datetime) as testdate
into #temp_table