problems with CREATE TABLE

Поиск
Список
Период
Сортировка
От Martin A. Marques
Тема problems with CREATE TABLE
Дата
Msg-id 00112219302400.20983@math.unl.edu.ar
обсуждение исходный текст
Ответы Re: problems with CREATE TABLE  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-general
I'm on Potsgres 7.0.2 on Solaris, and I get a parse error when I try to
create this table:

CREATE TABLE ubicacion (
       id        SERIAL,
       id_palabra    INT,
       tabla        INT NOT NULL,
       id_row        INT NOT NULL,
       CONSTRAINT "fk_ubic_id_palabra" FOREIGN KEY id_palabra
REFERENCES palabras ("pid"),
       CONSTRAINT "fk_tabla_s" FOREIGN KEY tabla REFERENCES tablas
("id_tabla")
);

OK,  the table palabras and the table tablas exist, as they also have those
columnas to reference to. The error I get is:

ERROR:  parser: parse error at or near "id_palabra"

If you need the CREATE TABLE statements of the other tables I can send them.

Saludos... :-)

--
"And I'm happy, because you make me feel good, about me." - Melvin Udall
-----------------------------------------------------------------
Martín Marqués            email:     martin@math.unl.edu.ar
Santa Fe - Argentina        http://math.unl.edu.ar/~martin/
Administrador de sistemas en math.unl.edu.ar
-----------------------------------------------------------------

В списке pgsql-general по дате отправления:

Предыдущее
От: George Armhold
Дата:
Сообщение: Re: trouble migrating from 6.3.2 (IRIX) to 7.0.2 (Linux)
Следующее
От: GH
Дата:
Сообщение: Weird table permission stuff.