From: | Oliver Elphick <olly(at)lfix(dot)co(dot)uk> |
---|---|
To: | chunxia xu <chunxia_xu(at)yahoo(dot)com> |
Cc: | pgsql-general(at)postgreSQL(dot)org |
Subject: | Re: create rule |
Date: | 2002-06-04 13:32:30 |
Message-ID: | 1023197551.22164.3583.camel@linda |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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(dot)Elphick(at)lfix(dot)co(dot)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
From | Date | Subject | |
---|---|---|---|
Next Message | Joshua b. Jore | 2002-06-04 14:14:38 | Re: second post: pg_dump and revision control |
Previous Message | zze-Synchro ball001 exterieur FTRD | 2002-06-04 13:32:23 | Connexion with jdbc |