Rép. : double quotes around table and column names - Mailing list pgsql-general

From Erwan DUROSELLE
Subject Rép. : double quotes around table and column names
Date
Msg-id c94905258a0ddb71b4c14d47ea97bb403ddcab38@
Whole thread Raw
List pgsql-general
The standard is that an identifier (table name, field name, ...) must be
double quoted if it contains any non (letter, digits, underscore)
character or if it is case sensitive

See User guide §1.1.1.

Again: use double quoted always or never.
Chose never if you can, eg if you use 'classical' table names

Use quoting if:
  - you want to build some very generic tool like an administrator
tool, a report generator...
  - if your app has some weird table names you cannot change

So my suggestion is the same as Mike's: avoid double quoting as much as
possible.

Erwan

>>> "Thomas T. Thai" <tom@minnesota.com> 11/21 7:09  >>>

What is the suggested way of using double quotes around table and
column
names? Is there a standard or suggested usage?


---------------------------(end of
broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to
majordomo@postgresql.org

pgsql-general by date:

Previous
From: Mike Mascari
Date:
Subject: Re: double quotes around table and column names
Next
From: David Pradier
Date:
Subject: Changing the type of a column in an already populated database.