digdeep

凡是过去,皆是序幕。Read the fucking manual and source code.

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

调查一列bug,偶然发现了update的一个特性:update t set a=a+1 where id=4; 这样一条简单的语句,也会发生让人意外的事情:

如果 a 的初始值为null时,无论你update多少次,a 的值始终是 null  !!!!!!

直接上图:

 

测试了一下 mysql, sql server 2008都是一样的,处理方法类似,mysql 有 ifnull(a,0) ,sql server 中有 isnull(a,0) 方法:

update model_model 
  	set accuracy_num=ISNULL(accuracy_num,0) + 1, accuracy_total=ISNULL(accuracy_total,0) + #accuracyTotal:DECIMAL# 
  	where id=#id:BININT# and status=1

 

posted on 2014-12-26 21:38  digdeep  阅读(660)  评论(0编辑  收藏  举报
不懂数据库和Web安全的架构师不是一个好的程序员。