触发器错误
create or replace trigger newuserinfo2
after insert
on userinfo2
declare
begin
dbms_output.put_line('成功插入新成员')
end;
/
出现了这个
PLS-00103: 出现符号 "END"在需要下列之一时:
:= . ( % ;
Warning: compiled but with compilation errors
是哪里错了?怎么解决啊
create or replace trigger newuserinfo2
after insert
on userinfo2
declare
begin
dbms_output.put_line('成功插入新成员')
end;
/
出现了这个
PLS-00103: 出现符号 "END"在需要下列之一时:
:= . ( % ;
Warning: compiled but with compilation errors
是哪里错了?怎么解决啊
2016-08-18
举报