0
我得到了這個觸發器,如果regexp返回一個值,我想評估手機並插入到另一個表中。我已經嘗試過但沒有成功。MySQL觸發器問題
delimiter //
create trigger companyA_phones after insert on customer
for each row
begin
set @phone = (select new.phone from customer where new.phone regexp '^0416');
if (@phone) then
insert into company_A(new.id, @phone);
end if;
end//
謝謝。我在觸發器上遇到了一個可怕的錯誤,我只需要用正則表達式評估手機。謝謝。 – Felix 2010-07-17 17:03:06