- ID
- 488623
- Banca
- NCE-UFRJ
- Órgão
- UFRJ
- Ano
- 2008
- Provas
- Disciplina
- Banco de Dados
- Assuntos
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: