Re: Order By and Comparisson

Поиск
Список
Период
Сортировка
От Albe Laurenz
Тема Re: Order By and Comparisson
Дата
Msg-id A737B7A37273E048B164557ADEF4A58B17CEBF27@ntex2010i.host.magwien.gv.at
обсуждение исходный текст
Ответ на Order By and Comparisson  ("howardnews@selestial.com" <howardnews@selestial.com>)
Ответы Re: Order By and Comparisson  ("howardnews@selestial.com" <howardnews@selestial.com>)
Список pgsql-general
howardnews@selestial.com wrote:
> just as I thought I had postgres mastered :)  the ordering of strings is
> causing me some confusion.
> 
> Can someone explain how the database orders strings in the ORDER BY command.
> 
> My example:
> 
> My database is encoding is UTF-8, and default language is english,
> 
> If I have a text column in a table with the following rows:
> 
> 'a'
> 'A'
> '~'
> 
> Then in UTF-8, I would expect the order to give me
> 
> 'A'
> 'a'
> '~'
> 
> But instead I get:
> 
> '~'
> 'a'
> 'A'
> 
> Is there anywhere in the documentation I can get a more detailed
> explanation of this?

http://www.postgresql.org/docs/current/static/collation.html#AEN33298

The ordering depends on the collation.
Which collations are available and how they order depends on your operating system.

What is your OS and what do you get for
   SHOW lc_collate;

Yours,
Laurenz Albe

В списке pgsql-general по дате отправления:

Предыдущее
От: "howardnews@selestial.com"
Дата:
Сообщение: Order By and Comparisson
Следующее
От: Rebecca Clarke
Дата:
Сообщение: Re: Initial queries of day slow