CREATE OR REPLACE 
function testAdd(js1 in number, js2 in number)
  return number is
  v_hj number;
    v_h NUMBER := 5;
begin
  v_hj := js1 + js2 + v_h;
  return v_hj;
end;

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-08-28
  • 2022-12-23
  • 2021-04-05
  • 2022-12-23
  • 2022-12-23
  • 2021-08-14
  • 2021-12-09
相关资源
相似解决方案