set serveroutput on

declare

emplist emp%rowtype;


begin

select *  into emplist from emp   where empno=7839;
dbms_output.put_line(emplist.ename||'的薪水是'||emplist.sal);
end;
/

 

相关文章:

  • 2021-06-29
  • 2022-01-02
  • 2021-12-20
  • 2021-12-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-10-11
  • 2022-12-23
  • 2022-01-19
  • 2021-12-16
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案