通过销售单号修改里面的一个商品的实收金额 查询
select netprice, * from u_sale_c where saleno=’21111502260290′
and wareid =’101227′
更新价格
create table #disable_u_sale_c(id int)
update u_sale_c set netprice=35 where saleno=’21111502260290′
and wareid =’101227′
drop table #disable_u_sale_c
|