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 Quote
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. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.