首页 > 代码库 > 数据库存储过程
数据库存储过程
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 过程名称();
数据库存储过程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。