reate or replace procedure ADDDEPT(deptno  in  dept.deptno%type,
deptname in dept.dname%type) is
begin
  
  --insert
  insert into dept values(deptno,deptname);
  commit;
  dbms_output.put_line('successfully');
  
end ADDDEPT;
问题:
Warning: Procedure created with compilation errors.SQL> show error
Errors for PROCEDURE ADDDEPT:LINE/COL ERROR
-------- -----------------------------------------------------------------
6/3      PL/SQL: SQL Statement ignored
6/15     PL/SQL: ORA-00947: not enough values
SQL> 
大家帮忙看一下那块有错误啊?