How to create COLLATION for Brazilian Portuguese

1

In documentation says to create collation like this:

CREATE COLLATION french (LOCALE = 'fr_FR.utf8');

This example is for France. What would it be like for Brazilian Portuguese?

    
asked by anonymous 31.10.2018 / 19:33

1 answer

2

pt_BR.utf8

To check which locales are available use:

SELECT * FROM pg_collation;
    
31.10.2018 / 20:26