Considere o seguinte script SQL: create table T1 (a int not...
Próximas questões
Com base no mesmo assunto
Ano: 2008
Banca:
NCE-UFRJ
Órgão:
UFRJ
Prova:
NCE-UFRJ - 2008 - ACAPLAM-PB - Analista de Tecnologia da Informação |
Q162872
Banco de Dados
Considere o seguinte script SQL:
create table T1
(a int not null primary key, b int);
create table T2
(b int not null, c int not null, a int not null unique,
constraint c1 foreign key (a) references T2);
Pode-se concluir que entre os registros das tabelas T1 e T2 existe um relacionamento:
create table T1
(a int not null primary key, b int);
create table T2
(b int not null, c int not null, a int not null unique,
constraint c1 foreign key (a) references T2);
Pode-se concluir que entre os registros das tabelas T1 e T2 existe um relacionamento: