数据库中统计全部表的行数

postgresql中: select relname as TABLE_NAME, reltuples as rowCounts from pg_class  where relkind = 'r' and relnamespace = (select oid from pg_namespace where nspname='public') order by rowCounts desc; h
相关文章
相关标签/搜索