我是 pl/sql 的新手,尤其是 oracle 形式的新手。
这是我的标准(store_A's (value) & store_B's(value) 差异超过 4000 然后触发触发器)
例如: store_A = 500 和 store_B = 5000 然后调用触发器(差不能超过 4000)
请帮我修改这段代码:
if :book_daily_stats.store_A > :book_daily_stats.store_B and :book_daily_stats.store_A < 4000
then
al_id:= Find_Alert ('Store_Caution')
al_button:= Show_Alert(al_id)
if al_button = Alert_Button1
then
Raise Form_Trigger_Failure;
End if;
End;