数据库存储过程

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 过程名称();

以上是关于数据库存储过程的主要内容,如果未能解决你的问题,请参考以下文章

mybatis 存储过程

如何将代码片段存储在 mongodb 中?

重定向时如何在 Safari 中保留 uri 片段?

MySql触发器使用

如何将 r ggplot 图存储为 html 代码片段

sql 这些代码片段将演示如何逐步使用PolyBase。你应该有一个blob存储和存储秘密方便