Re: Can I get some PostgreSQL developer feedback on these five general issues I have with PostgreSQL and its ecosystem?

From: Thomas Kellerer <shammat(at)gmx(dot)net>
To: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: Can I get some PostgreSQL developer feedback on these five general issues I have with PostgreSQL and its ecosystem?
Date: 2020-09-25 15:55:17
Message-ID: 894083de-37f5-e46c-fa12-3714f9a1ec55@gmx.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Adrian Klaver schrieb am 25.09.2020 um 17:02:
>> Would it be nice if I could use special characters like öäü in the names of tables and columns (without the hassle of quoting them)?
>> Yes, absolutely.
>>
> But you can use them without quoting:
>
> select version();
>                                       version
> ------------------------------------------------------------------------------------
>  PostgreSQL 12.3 on x86_64-pc-linux-gnu, compiled by gcc (SUSE Linux) 7.5.0, 64-bit
>
> create table öäü (id int , fld_1 varchar);
>
> insert into öäü values (1, 'test');
>
> select * from öäü;
>  id | fld_1
> ----+-------
>   1 | test

Ah cool ;)

I didn't know that, thanks.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Johannes Graën 2020-09-25 19:46:30 Re: Can I get some PostgreSQL developer feedback on these five general issues I have with PostgreSQL and its ecosystem?
Previous Message Adrian Klaver 2020-09-25 15:39:50 Re: Can I get some PostgreSQL developer feedback on these five general issues I have with PostgreSQL and its ecosystem?