create [or replace ] trigger 触发器名[参数1,参数2……]
after|before update|delete|insert
on 表名 [for each row]
begin
语句序列;
end;