답변:
열에서 기본이 아닌 데이터 정렬을 확인하려면 다음 쿼리를 사용할 수 있습니다.
select table_schema,
table_name,
column_name,
collation_name
from information_schema.columns
where collation_name is not null
order by table_schema,
table_name,
ordinal_position;
편집 : 데이터베이스의 데이터 정렬을 찾으려면`pg_database를 쿼리해야합니다.
select datname,
datcollate
from pg_database;
다음은 매뉴얼의 관련 부분에 대한 링크입니다