From: | Andreas Kretschmer <akretschmer(at)spamfence(dot)net> |
---|---|
To: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Syntax error in trigger |
Date: | 2010-04-21 15:34:17 |
Message-ID: | 20100421153417.GA1971@tux |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Jignesh Shah <jignesh(dot)shah1980(at)gmail(dot)com> wrote:
> Hi All,
>
> I have written below trigger and applied on the table but it is giving syntax
> error when it gets invoked. Could you please help me what is wrong? I have
> given complete details here:
>
> my trigger function:
>
> CREATE OR REPLACE FUNCTION techdb_logtable_trigger()
> RETURNS trigger AS
> $BODY$
> my $id = $_TD->{new}{'id'};
> my $query = "
> INSERT INTO log_table(id)
> SELECT $1
> EXCEPT SELECT id --> throwing error for here: syntax error at or near
Select from which table? I think, there is the table-name missing,
right?
Andreas
--
Really, I'm not out to destroy Microsoft. That will just be a completely
unintentional side effect. (Linus Torvalds)
"If I was god, I would recompile penguin with --enable-fly." (unknown)
Kaufbach, Saxony, Germany, Europe. N 51.05082°, E 13.56889°
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Kellerer | 2010-04-21 15:34:29 | Re: Embedded Postgres |
Previous Message | Tom Lane | 2010-04-21 15:14:38 | Re: Embedded Postgres |