数据库存储过程
Posted by-lhc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库存储过程相关的知识,希望对你有一定的参考价值。
1.创建存储过程
create procedure 过程名称 ([参数1,参数2,...])
as
<pl/sql>;
create procedure transfer(inAccount INT, outAccount INT, amount FLOAT) as declare totalDeposit FLOAT; begin select total into totalDeposit from account where accountnum=outAccount; if totalDeposit is null then rollback; return; end if; if totalDeposit < amount then rollback; return; end if; update account set total=total-amount where accountnum=outAccount; update account set total=total+amount where accountnum=inAccount; commit; end;
2.重命名存储过程
alter procedure 过程名称1 rename to 过程名称2;
3.执行存储过程
call/perform procedure 过程名称 ([参数1,参数2,...]);
4.删除存储过程
drop procedure 过程名称();
以上是关于数据库存储过程的主要内容,如果未能解决你的问题,请参考以下文章