Re: create rule - Mailing list pgsql-general

From Oliver Elphick
Subject Re: create rule
Date
Msg-id 1023197551.22164.3583.camel@linda
Whole thread Raw
In response to create rule  (chunxia xu <chunxia_xu@yahoo.com>)
List pgsql-general
On Mon, 2002-06-03 at 23:37, chunxia xu wrote:
> This won't work:
>
> CREATE TABLE pub_gene (
>         pub_gene_id  serial PRIMARY KEY,
>         name varchar(200) default NULL
> );
>
> CREATE TABLE term (
>          term_id serial PRIMARY KEY,
>          name varchar(200) default NULL,
>          pub_gene_id  INTEGER references pub_gene
>                        ON UPDATE CASCADE
>                        ON DELETE SET NULL
> );
>
> CREATE RULE pub_gene_insert_term AS -- INSERT rule
> ON INSERT TO pub_gene
> DO
>   insert into term(term_id, name, date_entered,
> entered_by )
>   values (nextval('term_term_id_seq'),
>           (select name from pub_gene where
> pub_gene_id=currval('pub_gene_pub_gene_id_seq'))
>          )
>   );

1. Too many closing parentheses;
2. Table "term" does not contain the fields "date_entered" and
"entered_by".

--
Oliver Elphick                                Oliver.Elphick@lfix.co.uk
Isle of Wight                              http://www.lfix.co.uk/oliver
GPG: 1024D/3E1D0C1C: CA12 09E0 E8D5 8870 5839  932A 614D 4C34 3E1D 0C1C

     "But without faith it is impossible to please him; for
      he that cometh to God must believe that he is, and
      that he is a rewarder of them that diligently seek
      him."       Hebrews 11:6

Attachment

pgsql-general by date:

Previous
From: "Alain Lavigne"
Date:
Subject: Re: Vacuum behaviour in plpgsql function
Next
From: "Joshua b. Jore"
Date:
Subject: Re: second post: pg_dump and revision control