源码下载https://ma65.lanzout.com/izpyB01isxbc
下载密码:6dwc
触发器代码
BEGIN
if(old.g_price=new.g_price)then
set@type=0;
ENDIF;
if(old.g_price
ENDIF;
if(old.g_price>new.g_price)then
set@type=2;
ENDIF;
if(old.g_price!=new.g_price)then
insertintoxiaoyewl_web_goods_monitor(m_webId,m_type,m_goods_id,m_goods_old_price,m_goods_new_price,m_date)
values(new.g_webId,@type,new.id,old.g_price,new.g_price,SYSDATE());
ENDIF;
END