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