3
When creating this table in postgre sql I get this error message
Table creation tipo_agendamento_escritorio
create table tipo_agendamento_escritorio(
id int8 not null,
primary key (id),
tipo_agendamento_id int8 not null,
constraint foreign key (tipo_agendamento_id) REFERENCES tipo_agendamento (id),
prazocomum int8 not null,
prazotrabalhista int8 not null,
tempoconfeccao int8 not null
);
create sequence tipo_agendamento_escritorio_id_seq;
I get the error message:
SQL Error [42601]: ERROR: syntax error at or near "Foreign"
"I think" there’s one left
constraint
there. It would be used if you were adding the foreign key after the table was created (separate query).– LipESprY