oracle中这些语句可以用循环或是其它方式简略写吗?

 我来答
龙氏风采
2016-12-27 · 知道合伙人互联网行家
龙氏风采
知道合伙人互联网行家
采纳数:5849 获赞数:12817
从事互联网运营推广,5年以上互联网运营推广经验,丰富的实战经

向TA提问 私信TA
展开全部
  ORACLE循环语句
  1、 Exit When 循环:
  www.2cto.com
  Sql代码
  declare
  -- Local variables here
  i integer;
  begin
  i:=0;
  LOOP
  Exit When(i>5);
  Dbms_Output.put_line(i);
  i:=i+1;
  END LOOP;
  end;
  2、 Loop 循环
  Java代码
  declare
  -- Local variables here
  i integer;
  begin
  i:=0;
  loop
  i:=i+1;
  dbms_output.put_line(i);
  if i>5 then
  exit;
  end if;
  end loop;
  end;
  www.2cto.com
  3、 While 循环:
  Sql代码
  declare
  -- Local variables here
  i integer;
  begin
  i:=0;
  while i<5 loop
  i:=i+1;
  dbms_output.put_line(i);
  end loop;
  end;
  4、 For 普通循环:
  Sql代码
  declare
  -- Local variables here
  i integer;
  begin
  i:=0;
  for i in 1..5 loop
  dbms_output.put_line(i);
  end loop;
  end;
  www.2cto.com
  5 、 For 游标循环:
  准备数据
  Sql代码
  --创建表
  create table test (id number);
  --插入数据
  declare
  -- Local variables here
  i integer;
  begin
  i:=0;
  for i in 1..5 loop
  insert into test values(i);
  end loop; www.2cto.com
  end;
  循环
  Sql代码
  declare
  -- Local variables here
  begin
  for c_test in (select * from test) loop
  dbms_output.put_line(c_test.id);
  end loop;
  end;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式