Re: Adding a NOT NULL column? - Mailing list pgsql-general

From Gregory Wood
Subject Re: Adding a NOT NULL column?
Date
Msg-id 002801c0fe73$aeb33c50$7889ffcc@comstock.com
Whole thread Raw
In response to Adding a NOT NULL column?  (Philip Molter <philip@datafoundry.net>)
Responses RE: Re: Adding a NOT NULL column?  ("tamsin" <tg_mail@bryncadfan.co.uk>)
List pgsql-general
> but how do set that new column to be NOT NULL?  The postgres docs say
> do something like:
>
>   ALTER TABLE t ADD (table constraint definition)
>
> so I would do that like:
>
>   ALTER TABLE ADD c NOT NULL
>   ALTER TABLE ADD CONSTRAINT c NOT NULL
>
> each time it fails on the 'NOT'.  How do I add that constraint?

I believe you can either ALTER the column (much like you did when you added
the default value: ALTER TABLE t ALTER c SET DEFAULT 0), or ADD a CHECK
constraint which checks that 'c IS NOT NULL'. I don't think you can simply
*add* a 'NOT NULL' constraint to a column after the fact.

Both of these should work fine, although I'm more comfortable with the
syntax of the first:

ALTER TABLE ALTER COLUMN c NOT NULL;
-OR-
ALTER TABLE ADD CONSTRAINT CHECK (c IS NOT NULL);

Greg


pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Large objects in web applications
Next
From: Alex Pilosov
Date:
Subject: Re: Returning records from function