ORACLEDB存储过程语法

ORACLEDB存储过程语法,oracle,stored-procedures,Oracle,Stored Procedures,我正在使用编译错误创建as过程 它有什么错误?缺少分号 create or replace procedure procOne(sid IN number,sname IN varchar,fee IN number) as begin insert into student values(sid,sname,fee) end; / google中的“oracle显示存储过程编译错误”将告诉您如何获取错误消息。欢迎使用SO。如果你想让别人认真对待你的问题,请花点时间精心设计。读这

我正在使用编译错误创建as过程

它有什么错误?

缺少分号

create or replace procedure procOne(sid IN number,sname IN varchar,fee IN number)
as
begin
   insert into student 
   values(sid,sname,fee)
end;
/

google中的“oracle显示存储过程编译错误”将告诉您如何获取错误消息。欢迎使用SO。如果你想让别人认真对待你的问题,请花点时间精心设计。读这个,还有这个
create or replace procedure procOne(sid IN number,sname IN varchar,fee IN number)
as
begin
   insert into student 
   values(sid,sname,fee);
end;
/