create table jj (jid number(2)); create or replace procedure adddata(i)
 as
 begin
 insert into jj values(i);
 end;
 /警告: 创建的过程带有编译错误。