| From: | Graf László <graf(dot)laszlo(at)axis(dot)hu> |
|---|---|
| To: | pgsql-sql(at)postgresql(dot)org, peter_e(at)gmx(dot)net |
| Subject: | ERROR: syntax error at or near "select" at character 9 |
| Date: | 2005-09-02 07:26:04 |
| Message-ID: | 4317FE8C.7020803@axis.hu |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-sql |
Hi
I am using PG 8.0 on Win32, learning SQL.
I dod create a table with the following SQL:
CREATE TABLE test (
id integer,
nev varchar(25),
datum timestamp
);
A sequence with:
CREATE SEQUENCE "public"."test_azon_seq"
INCREMENT 1 MINVALUE 101
MAXVALUE 9223372036854775807 START 101
CACHE 1
;
A before insert trigger:
CREATE FUNCTION test_verif() RETURNS trigger AS $test_verif$
BEGIN
NEW.id := select nextval('test_azon_seq');
NEW.nev := nev;
NEW.datum := current_timestamp;
RETURN NEW;
END;
$test_verif$ LANGUAGE plpgsql
;
CREATE TRIGGER test_verif BEFORE INSERT ON test
FOR EACH ROW EXECUTE PROCEDURE test_verif()
;
When I issue the
insert into "public"."test" (nev) values ('Graf László');
insert statement, it returns
"ERROR: syntax error at or near "select" at character 9".
Why? What is wrong?
--
László Graf
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Graf László | 2005-09-02 09:09:37 | Returning with the inserted id |
| Previous Message | Marc McIntyre | 2005-09-02 02:58:07 | Last access date for databases/users |