Re: newbie table design question - Mailing list pgsql-general

From Scott Marlowe
Subject Re: newbie table design question
Date
Msg-id dcc563d10906011308v5a7cf3a8se277c4d6b01af732@mail.gmail.com
Whole thread Raw
In response to Re: newbie table design question  (björn lundin <b.f.lundin@gmail.com>)
List pgsql-general
2009/6/1 björn lundin <b.f.lundin@gmail.com>:
>
>> CREATE TABLE "DataImport"
>> (
>>   "DataImportID" serial NOT NULL PRIMARY KEY,
>>   "Time" timestamp without time zone NOT NULL,
>>   "ID_ABC" integer NOT NULL,
>>   "ID_DEF" integer NOT NULL,
>>   "ID_HIJ" integer NOT NULL,
>>   etc
>> );
>
> Perhaps you want to not use the "" around the table and column names.
> It makes them case sensitive

OR always always always use them.  But yeah, I find having to quote my
identifiers all the time a gigantic pain.

pgsql-general by date:

Previous
From: björn lundin
Date:
Subject: Re: newbie table design question
Next
From: Merlin Moncure
Date:
Subject: Re: INSERT RETURNING rule for joined view