declare
    v_sal number;
begin
    select t.sal into v_sal from scott.emp t where rownum <= 1;
    dbms_output.put_line(v_sal);
end;

 

相关文章:

  • 2021-11-19
  • 2022-02-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
猜你喜欢
  • 2022-12-23
  • 2021-11-11
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案