--查询当前所有表数据量大于0的
select u.TABLE_NAME,u.NUM_ROWS from user_tables u where num_rows>0 order by u.NUM_ROWS desc
Oracle 查询所有当前表有数据的表
最新推荐文章于 2025-01-07 09:26:27 发布
--查询当前所有表数据量大于0的
select u.TABLE_NAME,u.NUM_ROWS from user_tables u where num_rows>0 order by u.NUM_ROWS desc