输出:

declare

  stuName varchar2(30);

  stuAge number;

begin

  stuName:='jack';

  stuAge:=30;

  dbms_output.put_line('name'||stuName||'age'||stuAge);

end

/

赋值:

select t.id into stuName from t_table t 

相关文章:

  • 2022-12-23
  • 2023-01-16
  • 2022-12-23
  • 2022-01-10
  • 2021-04-07
  • 2021-10-07
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-12
  • 2022-12-23
  • 2021-05-30
  • 2021-11-08
相关资源
相似解决方案