10PL_SQL过程之执行if语句

declare   v_sal emp.sal%type; begin   select sal into v_sal from emp   where empno = 7369;   if(v_sal<1200) then     dbms_output.put_line('low');   elsif(v_sal=1200) then     dbms_output.put_line('mid
相关文章
相关标签/搜索