📜  显示所有表 postgres 的大小 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:25.931000             🧑  作者: Mango

代码示例1
select table_name, pg_relation_size(quote_ident(table_name))
from information_schema.tables
where table_schema = 'public'
order by 2