日期:2014-05-17  浏览次数:20507 次

ACCESS更新字段的时候能不能用要更新的字段做判断条件?
要更新“出库状态”,之前“出库状态”为空,
update 表 set 出库状态=“已出库” where 出库状态=null
这样写不行,该怎么写?

------解决方案--------------------
where 出库状态=null
这个是不是写成 where 出库状态 is null