ORACLE带参数的存储过程和不带参数的存储过程

1.不带参数的存储过程测试 create or replace procedure mypro1 is begin insert into tb_test(myname) values('测试存储过程'); commit; end; /spa 调用的语句索引  call mypro1();it 2.带参数的存储过程test create procedure mypro2(num1 number)
相关文章
相关标签/搜索