PL/SQL编程入门day01

 利用PL/SQL语句实现简单查询打印员工编号与员工工资语句。

declare
      -- 定义emp表中的工资v_sal
      v_sal emp.sal%type;
      -- 定义v_ename='SMITH'
      v_ename nvarchar2(20):='SMITH';
      -- 定义员工编号v_empno
      v_empno emp.empno%type;
      -- 定义结果v_result
      v_result nvarchar2(50);
begin
      -- 查找数据并保存到变量中
      select sal,empno into v_sal,v_empno
      from emp where ename=v_ename;
      -- 打印输出变量的值
      v_result:=v_empno||'-'||v_ename||':'||v_sal;
      dbms_output.put_line(v_result);
end;

打印员工工资等级

declare
          v_ename nvarchar2(20):='SMITH';
          v_sal number(7,2); 
          v_result nvarchar2(3); -- 保存判断结果
begin
       -- 勿忘额外加into变量
          select sal into v_sal from emp where ename = v_ename;
          if v_sal>5000 then
                v_result:='大佬' ;  
          elsif v_sal>=3000 then
                 v_result:='老鸟' ;
          elsif v_sal<3000 then
                 v_result:='菜鸟' ;  
          end if;
          dbms_output.put_line(v_result); -- 输出唯一的判断结果
end;

 

本文地址:https://blog.csdn.net/m0_47119598/article/details/108962850

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐