我正在开发一个过程,该过程将声明一个变量,从一个递增的过程中获取值,并将该值与其他参数一起插入到表中。我以为我已经解决了所有问题,但后来我遇到了 PLS-00103:遇到符号“DECLARE”和遇到符号“文件结尾”。我觉得我很接近,所以任何帮助将不胜感激!谢谢!
create or replace procedure Order_Create(date_order string, cust_id char, total float, employ_id number)
is
DECLARE NewKey;
BEGIN
NewKey := order_auto_inc.nextval;
UPDATE Progressive_Keys set Order_Limit = NewKey;
insert into ORDERS VALUES (Progressive_Keys.Order_Limit, to_date(date_order, 'yyyy-mm-dd'), cust_id, total, employ_id);
commit;
END;