select item_no, item_subno, item_name
from item
where in_price > 999999
or base_price > 999999
or sale_price > 999999
or vip_price > 999999
or in_stock_factor > 999999
select item_no, branch_no, cost_price, stock_qty
from wh_stock
where cost_price > 999999
or stock_qty > 999999
or abs(cost_price) * abs(stock_qty) > 999999
select * from wh_inout_flow where oper_date > dateadd(dd, -30, getdate()) and abs(real_qty) * abs(current_salepx) > 9999999
--update wh_inout_flow set current_salepx = sale_price where oper_date > dateadd(dd, -30, getdate()) and abs(real_qty) * abs(current_salepx) > 9999999
select * from pos_daysum where oper_date > dateadd(dd, -100, getdate()) and abs(sale_qty) + abs(ret_qty) > 9999999
运行语句查到的异常,进入商品基本信息修改