当前位置: 代码迷 >> Sql Server >> 帮忙看看这个sql语句解决方法
  详细解决方案

帮忙看看这个sql语句解决方法

热度:102   发布时间:2016-04-27 16:40:54.0
帮忙看看这个sql语句
update   table1   set   dataProdate= '2007 ',periodID= '1 ',area= '0 ',isWheat= '1 '   where   area=null
更新area没有值的行,怎么不成功?

------解决方案--------------------
update table1 set dataProdate= '2007 ',periodID= '1 ',area= '0 ',isWheat= '1 ' where area is null
  相关解决方案