作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法将日期时间值(getdate()
)插入/更新到如下创建的临时表中:
select id, null as testdate
into #temp_table
然后是稍后的声明:
update #temp_table
set testdate=getdate()
我收到错误:
cannot convert datetime into int...
谢谢。
最佳答案
将选择中的列转换到
select id, cast(null as datetime) as testdate
into #temp_table
关于sql - 选择 null 作为 testdate 进入 #temp_table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3711626/
我想知道#temp_table 和 user.#temp_table 之间有什么区别 -- 1) #Tem_table create table #temp_table ( id inte
1有2个表,temp_table和table,都是MyISAM。 temp_table(频繁写入,每分钟运行cron作业插入数据) id(auto_increment),title(varchar(2
有没有办法将日期时间值(getdate())插入/更新到如下创建的临时表中: select id, null as testdate into #temp_table 然后是稍后的声明: update
如此处所示 LINK您可以将鼠标悬停在 SELECT * from... 中的 * 上,工具提示将显示由该 * 表示的列的列表>. 有没有办法将文本从工具提示复制到剪贴板? 我知道您可以使用对象资源管
我是一名优秀的程序员,十分优秀!