Oracle創建function函數


 1 create or replace function getid(newId in number)
 2   return number
 3 is
 4   isInsert number(8);
 5 begin
 6   isInsert:=0;
 7   --查出v_calling_type
 8   select flow_id into isInsert from apply_flow1@dblinktojm where flow_id=newId;
 9   return isInsert;
10 exception
11   when others then
12   return 0;
13 
14 end getid;

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM