postgres 특정 Database 안에 있는 특정 schema에 있는 table들을 용량순으로 조회하고싶은데
쿼리를 모르겠습니다...
mysql상에선
select table_name,data_length from information_schema.tables where table_schema='public' order by 2;
이렇게 쿼리 입력하면 조회가 가능하거든요..
postgres에선 해당 쿼리를 그대로 입력하면
ERROR: column "data_length" does not exist
이렇게 에러가 발생합니다..
답변 부탁드립니다~!
|