Dear Friends,
I guess the problem I am prosting right now should be quite trivial, but nevertheless I'm experienced with SQL, this does not stand for PostgreSQL.
I have a table with the stucture approx:
And I want to run the query:
...and got the response
I cannot change the query because it comes from PHPCake
Please tell me what the problem might be.
Thanks
z
I guess the problem I am prosting right now should be quite trivial, but nevertheless I'm experienced with SQL, this does not stand for PostgreSQL.
I have a table with the stucture approx:
Code:
idorvos | integer | not null default nextval(('idorvos'::text)::regclass)
nev | character varying(255) | not null
Code:
INSERT INTO "orvos" ("idorvos","nev") VALUES (DEFAULT,'TESZT')
Code:
ERROR: relation "idorvos" does not exist
Please tell me what the problem might be.
Thanks
z
Comment