当前位置:
代码迷
>>
SQL
>> sql数据库怎么实现int类型数值相加减
详细解决方案
sql数据库怎么实现int类型数值相加减
热度:
231
发布时间:
2016-05-05 15:29:51.0
sql数据库如何实现int类型数值相加减?
目前正在做个借书系统,针对书本数量的增减来实现借出归还功能,请各位大大帮下忙看下这个代码应该如何编写,不胜感激!!
------解决方案--------------------
假如表tb有个字段total_count表示数量
则:
增加1本:
update tb set total_count=total_count+1 where 条件
减少1本:
update tb set total_count=total_count-1 where 条件
查看全文
相关解决方案