Re: Unquoted column names fold to lower case

Поиск
Список
Период
Сортировка
От Vik Fearing
Тема Re: Unquoted column names fold to lower case
Дата
Msg-id 51D3EE75.6010401@dalibo.com
обсуждение исходный текст
Ответ на Unquoted column names fold to lower case  (Dev Kumkar <devdas.kumkar@gmail.com>)
Ответы Re: Unquoted column names fold to lower case  (Dev Kumkar <devdas.kumkar@gmail.com>)
Список pgsql-sql
On 07/03/2013 11:12 AM, Dev Kumkar wrote:
> All unquoted identifiers are assumed by PostgreSQL to be lower case by
> default. This means
> - SELECT MY_COLUMN FROM my_table
> - SELECT my_column FROM my_table
> - SELECT my_column as MY_COLUMN FROM my_table
> All refer to my_column and has column name in lowercase as my_column.
>
> If the aliases are in upper case and quoted then those are returned in
> upper case.
> - SELECT my_column as "MY_COLUMN" FROM my_table
>
> Is there any workaround to set the alias columns to be returned as
> upper case with adding quotes.

There is no workaround because there is no bug.

> Is there any connection level parameter to flip this behavior?

No.



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

Предыдущее
От: Dev Kumkar
Дата:
Сообщение: Re: Unquoted column names fold to lower case
Следующее
От: Dev Kumkar
Дата:
Сообщение: Re: Unquoted column names fold to lower case