可以用 Ref cursor: Sql代码 type refcur_type is ref cursor; cur refcur_type; begin open cur for ' select * from ' || table_name; 然后再fetch cur 就可以用了。。。 相关文章: