I am getting syntax error in creating the following trigger:
create trigger x.generate_responsibility
before insert on x.organization_applications_b
for each row
begin
call x.resp_auto_generate(new.org_id,new.application_code);
end;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Precede this command with:
and follow with
so you can use the semi-colon as part of your trigger source while defining your trigger, then make the semi colon the usual command delimiter after you’re done.
The whole thing should look like this: