最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

oracle删除存储及调用存储的命令

来源:动视网 责编:小采 时间:2020-11-09 15:52:39
文档

oracle删除存储及调用存储的命令

oracle删除存储及调用存储的命令:一、不带参存储 用如下一个存储做例子: create or replace procedure testwhileloop IS v_count number := 0;begin while v_count 10 loop v_count := v_count + 2; dbms_output.put_line(v_count: v
推荐度:
导读oracle删除存储及调用存储的命令:一、不带参存储 用如下一个存储做例子: create or replace procedure testwhileloop IS v_count number := 0;begin while v_count 10 loop v_count := v_count + 2; dbms_output.put_line(v_count: v


一、不带参存储 用如下一个存储做例子: create or replace procedure testwhileloop IS v_count number := 0;begin while v_count 10 loop v_count := v_count + 2; dbms_output.put_line(v_count: || v_count); end loop;end testwhileloop; 执行如下命令

一、不带参存储

用如下一个存储做例子:

create or replace procedure testwhileloop IS
 v_count number := 0;
begin
 while v_count < 10 loop
 v_count := v_count + 2;
 dbms_output.put_line('v_count:' || v_count);
 end loop;
end testwhileloop;


执行如下命令:

SQL> set serveroutput on;
SQL> exec testwhileloop;
 
v_count:2
v_count:4
v_count:6
v_count:8
v_count:10
 
PL/SQL procedure successfully completed
 
SQL> drop procedure testwhileloop;
 
Procedure dropped
 
SQL>

其中:

exec testwhileloop; 命令用于执行存储

drop procedure testwhileloop; 命令用于删除存储

二、带参存储

create or replace procedure testwhileloop(
i_count number
) IS
v_count number:=i_count;
begin
 while v_count < 10 loop
 v_count := v_count + 2;
 dbms_output.put_line('v_count:' || v_count);
 end loop;
end testwhileloop;


执行如下命令:

SQL> exec testwhileloop(1);
 
v_count:3
v_count:5
v_count:7
v_count:9
v_count:11
 
PL/SQL procedure successfully completed
 
SQL> drop procedure testwhileloop;
 
Procedure dropped
 
SQL> 


其中:

exec testwhileloop(1); 命令用于执行存储

drop procedure testwhileloop; 命令用于删除存储

文档

oracle删除存储及调用存储的命令

oracle删除存储及调用存储的命令:一、不带参存储 用如下一个存储做例子: create or replace procedure testwhileloop IS v_count number := 0;begin while v_count 10 loop v_count := v_count + 2; dbms_output.put_line(v_count: v
推荐度:
标签: 删除 存储 下一
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top