当前位置:操作系统 > Unix/Linux >>

procedure emp_count


procedure emp_count
 
create or replace procedure emp_count(p_total out number)
as
begin
select count(*) into p_total from users ;
end;
   
   ----------
   declare
   v_total number;
   begin
     emp_count(v_total);
     dbms_output.put_line('users is:'||v_total);
     end;
   www.zzzyk.com  
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,