m 编写以下几行来创建触发器:
create trigger notify after insert on applications
for each row
begin
insert into notifications SET sno=1;
end;
但每次我收到以下错误:
您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以在第 4 行的 '' 附近使用正确的语法
第 4 行是 -insert into notifications SET sno=1