--查询当前所有表数据量大于0的
select u.TABLE_NAME,u.NUM_ROWS from user_tables u where num_rows>0 order by u.NUM_ROWS desc
Oracle 查询所有当前表有数据的表
最新推荐文章于 2024-11-13 10:59:25 发布
--查询当前所有表数据量大于0的
select u.TABLE_NAME,u.NUM_ROWS from user_tables u where num_rows>0 order by u.NUM_ROWS desc