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;

 

select * from information_schema.columns
where table_schema='public' and table_name='表名称 ';

 

相关文章:

  • 2021-11-16
  • 2021-10-25
  • 2022-03-05
  • 2021-07-20
  • 2022-02-26
  • 2021-11-25
  • 2022-12-23
  • 2021-07-14
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案