| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | "Seth Banks" <seth(at)subimage(dot)com> |
| Cc: | pgsql-sql(at)postgreSQL(dot)org |
| Subject: | Re: [SQL] Problems with create table continued... |
| Date: | 2000-02-28 04:29:19 |
| Message-ID: | 20613.951712159@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-sql |
"Seth Banks" <seth(at)subimage(dot)com> writes:
> Anyone see a problem with this code?!
> CREATE TABLE content (
> content_id serial,
> parent_id int4 NOT NULL,
> parent_type int4 NOT NULL,
> author_id int4 NOT NULL,
> title text NOT NULL,
> url text NULL,
> start_date date NOT NULL,
> end_date date NOT NULL,
> priority int4 NULL,
> content text NULL,
> source text NOT NULL
> );
> ERROR: parser: parse error at or near "null"
NULL is not a valid column constraint according to SQL92.
(Even if it were valid, it'd be redundant.) Drop that
on those three columns and you'll be fine.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Ross J. Reedstrom | 2000-02-28 04:36:25 | Re: [SQL] Problems with create table continued... |
| Previous Message | Vikrant Rathore | 2000-02-28 03:49:39 | SQL query problem |