吹静静

欢迎QQ交流:592590682

select
relname as TABLE_NAME,
reltuples as rowCounts
from
pg_class
where
relkind = 'r'
and relnamespace = (
select
oid
from
pg_namespace
where
nspname = 'dw')
order by
rowCounts desc;

 

posted on 2023-03-30 16:25  吹静静  阅读(518)  评论(0编辑  收藏  举报