猿问

求问,关于oracle函数调用的方法?

create or replace function get_tab_count(tb varchar2) return number
as
type cursor_type is ref cursor;
get_cursor cursor_type;
tb_count number;
begin
open get_cursor for
'select count(*) into tb_count from '||tb;
close get_cursor;

commit;
return tb_count;
end;

天涯尽头无女友
浏览 379回答 2
2回答

开心每一天1111

可以直接用吧,get_tab_count(tb varchar2)。

千巷猫影

CALL FUNCIONT_NAME(PARAMETERS) INTO :A;PRINT A;
随时随地看视频慕课网APP
我要回答