如,FErrorTimes为Null时,要增加“1”,而“Null + 1”还是等于Null。
使用语句可以写成:
Update T_Table set FErrorTimes= ISNull(FErrorTimes,0)+1
where FName=@name.
如,FErrorTimes为Null时,要增加“1”,而“Null + 1”还是等于Null。
Update T_Table set FErrorTimes= ISNull(FErrorTimes,0)+1
where FName=@name.
转载于:https://www.cnblogs.com/listened/p/4209894.html