你没明确说要更新什么字段,只能给你个例子:
update archives set 字段A =5 where from_unixtime(pubdate,'%Y-%m-%d %h:%i:%m')='2012-11-11 00:00:00';
------------------from_unixtime(pubdate,'%Y-%m-%d %h:%i:%m')这个的意思就是把时间戳变成日期
类似2012-11-11 00:10:10这样的格式
如果说是要把pubdate字段的内容直接更新成刚才那样的日期格式,int类型的字段是存储不了的
str_to_date(pubdate,'%Y-%m-%d %H:%i:%s')
FROM_UNIXTIME(pubdate) 这个试试
select CONVERT(varchar, getdate(), 120 )