Re: Unquoted column names fold to lower case

From: Dev Kumkar <devdas(dot)kumkar(at)gmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Unquoted column names fold to lower case
Date: 2013-07-03 09:16:22
Message-ID: CALSLE1Ohq6i=aWUaHauH3sgkRApKZXNPO2+wFrpuhigUnAe6EA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Resending

On Wed, Jul 3, 2013 at 2:42 PM, Dev Kumkar <devdas(dot)kumkar(at)gmail(dot)com> wrote:

> Hello,
>
> 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 without adding quotes. Is there any connection level parameter to flip
> this behavior?
>
> Thanks in advance!
>
> Regards...
>

Browse pgsql-sql by date

  From Date Subject
Next Message Vik Fearing 2013-07-03 09:27:17 Re: Unquoted column names fold to lower case
Previous Message Dev Kumkar 2013-07-03 09:12:17 Unquoted column names fold to lower case