Answers for "how to find database collation in postgres"

SQL
0

how to find database collation in postgres

select datname, 
       datcollate
from pg_database;
Posted by: Guest on June-17-2020

Code answers related to "how to find database collation in postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language