存储过程与Oracle中常见的数据字典的用法

Posted Magic_Li

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了存储过程与Oracle中常见的数据字典的用法相关的知识,希望对你有一定的参考价值。

一个简单的存储过程:
create or replace procedure 
insert_user_procedure (id in number,name in varchar2,salary in number,result out varchar2) 
is begin 
    insert into t_user values(id,name,salary);
    result:=调用存储过程成功;
Exception
    when others then
    result:= 调用存储过程出错:  || SQLERRM;
end;

call insert_user_procedure(?,?,?,?)
通过数据字典查询:
    select table_name from user_tables;//查询表
    select sequence_name from user_sequences;//查询序列
    select index_name from user_indexs;//查询索引

以上是关于存储过程与Oracle中常见的数据字典的用法的主要内容,如果未能解决你的问题,请参考以下文章

Oracle中存储过程的作用和用法

oracle的存储过程

SQL的存储过程 语法格式是啥?

Oracle 存储过程中OUT参数的用法

oracle 中 as 用法有哪几种

oracle中declare begin end 这样的用法叫啥语句?它和直接写select那种语句有啥联系?