oracle基础语法汇总(七)

2024年 6月 4日 56.7k 0

oracle基础语法汇总(七)-1点击蓝色字关注“SQL数据库运维”,回复“SQL”获取2TB学习资源!oracle基础语法汇总(七)-2

既往文章链接(点击即可跳转):

Oracle基础语法汇总(一)

Oracle基础语法汇总(二)

Oracle基础语法汇总(三)

Oracle基础语法汇总(四)

Oracle基础语法汇总(五)

Oracle基础语法汇总(六)

四.使用PL/SQL
可用于创建存储过程,触发器,程序包,给SQL语句的执行添加程序逻辑。
支持SQL,在PL/SQL中可以使用:
数据操纵命令
事务控制命令
游标控制
SQL函数和SQL运算符
支持面向对象编程(OOP)
可移植性
更佳的性能,PL/SQL经过编译执行

分为三个部分:声明部分,可执行部分和异常处理部分

    [declare
    declarations]
    begin
    executable statements
    [exception
    handlers]
    end;
    打开输出
    set serverout on;

    --根据输入编号获取某学员的成绩--if

      declare
      score user_tbl.score%type;
      begin
      select score into score from user_tbl where id='&id';
      if score>90 then
      dbms_output.put_line('优秀');
      elsif score>80 then
      dbms_output.put_line('良好');
      elsif score>60 then
      dbms_output.put_line('及格');
      else
      dbms_output.put_line('差');
      end if;
      end;

      --根据学员姓名获取某学员的成绩--if

        declare
        score user_tbl.score%type;
        begin
        select score into score from user_tbl where user_name='&name';
        if score>90 then
        dbms_output.put_line('优秀');
        elsif score>80 then
        dbms_output.put_line('良好');
        elsif score>60 then
        dbms_output.put_line('及格');
        else
        dbms_output.put_line('差');
        end if;
        end;

        --case的使用

          declare
          grade user_tbl.grade%type;
          begin
          select grade into grade from user_tbl where id='&id';
          case grade
          when 'A' then dbms_output.put_line('优异');
          when 'B' then dbms_output.put_line('优秀');
          when 'C' then dbms_output.put_line('良好');
          else dbms_output.put_line('一般');
          end case;
          end;

          --基本循环

            declare
            i number(4):=1;
            begin
            loop
            dbms_output.put_line('loop size:'||i);
            i:=i+1;
            exit when i>10;
            end loop;
            end;

            --while循环

              declare
              i number(4):=1;
              begin
              while i

              相关文章

              Oracle如何使用授予和撤销权限的语法和示例
              Awesome Project: 探索 MatrixOrigin 云原生分布式数据库
              下载丨66页PDF,云和恩墨技术通讯(2024年7月刊)
              社区版oceanbase安装
              Oracle 导出CSV工具-sqluldr2
              ETL数据集成丨快速将MySQL数据迁移至Doris数据库

              发布评论