Re: OOO and postgres - Mailing list pgsql-general

From Rich Shepard
Subject Re: OOO and postgres
Date
Msg-id alpine.LNX.2.00.1101070949490.2506@salmo.appl-ecosys.com
Whole thread Raw
In response to OOO and postgres  (Bernhard Rohrer <graylion@sm-wg.net>)
Responses Re: OOO and postgres  (Thomas Kellerer <spam_eater@gmx.net>)
List pgsql-general
On Fri, 7 Jan 2011, Bernhard Rohrer wrote:

> CREATE TABLE "Bladetypes"
> (
>  "ID" integer NOT NULL,
>  "type" character varying[] NOT NULL,
>  CONSTRAINT "Bladetypes_pkey" PRIMARY KEY ("ID")
> )
>
> ALTER TABLE "Bladetypes" ADD COLUMN "ID" integer;
> ALTER TABLE "Bladetypes" ALTER COLUMN "ID" SET NOT NULL;
>
> ALTER TABLE "Bladetypes" ADD COLUMN "type" character varying[];
> ALTER TABLE "Bladetypes" ALTER COLUMN "type" SET NOT NULL;

   Don't use double quotes in your create table stanza. You can use them on
the table name with alter table and insert into.

   The data type is VARCHAR(), not character varying[].

   Why are you altering the table to be exactly how you defined it?

   Use single quotes to define text strings in your values statements.

   Perhaps you'll find value in reading a book on SQL. Rick van der Lans and
Joe Celko both write outstanding books on the language and its use.

Rich

pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: OOO and postgres
Next
From: Susan Cassidy
Date:
Subject: Re: OOO and postgres