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 關(guān)注
- 423 瀏覽
添加回答
舉報
0/150
提交
取消