你的表应该有主键吧,按照主键更新单条记录。
update table_name set 库存数量=xxxxx where 主键1=xxx and 主键2=xxxx ....
**********************
补充:数量为空后,不再显示这一条数据有两种方法:
1、把库存量为空的数据直接删除
delete from table_name where 库存数量 is null
2、在查询的时候加上 where 库存数量 is not null 的条件
**********************
---
以上,希望对你有所帮助。
不知道你的数据表是什么样的 要是不再显示就删掉那条数据
delete from table_name where 库存数量 is null
--更改全部库存
update 你的表 set 库存数量=50
--更改单个库存,where条件是加条件的.
update 你的表 set 库存数量=50 where 编号='001'
暂时不明白你的表结构,先这么写着,你可以hi我告诉我你的具体内容..
[补充的看不懂哦,你能hi我,告诉说详细点的么?]