didn't send mail html body in plsql
问题 I developed a trigger in plsql, the trigger work but I received 6 mails in the same time. I need just one mail, how I can do it? CREATE or replace TRIGGER RI AFTER insert or update on ap_supplier_sites_all for each row DECLARE x_count NUMBER; begin select count(*) into x_count from rib1 r1,rib2 r2 where r1.ATTRIBUTE4=r2.Supplier_RIB; if(x_count > 0) then testrib;--execute SP end if; end; 回答1: Here's how it goes: trigger fires when you insert or update rows in AP_SUPPLIER_SITES_ALL suppose you