create or replace function get_tab_count(tb varchar2) return numberastype cursor_type is ref cursor;get_cursor cursor_type;tb_count number;beginopen get_cursor for'select count(*) into tb_count from '||tb;close get_cursor;commit;return tb_count;end;
- 2 回答
- 0 关注
- 369 浏览
添加回答
举报
0/150
提交
取消