orig Posted December 22, 2020 Posted December 22, 2020 Hello, How can I create database with different Collation and Character Type than default ones:Collation: en_US.UTF-8Character Type: en_US.UTF-8 Encoding is UTF which is OK. I would like following:Collation: hr_HR.utf8Character Type: hr_HR.utf8 I tried with phpPgAdmin but it doesn't have option to change it as phpMyAdmin has. Server: ThommyDatabase: orig_2021user: orig Thank you
Krydos Posted December 24, 2020 Posted December 24, 2020 Maybe this will help? https://www.postgresql.org/docs/9.1/collation.html CREATE TABLE test1 ( a text COLLATE "de_DE", b text COLLATE "es_ES", ... ); You should be able to create tables through phppgadmin.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now