Questões de Concurso Público Câmara Municipal do Recife - PE 2014 para Programador
Foram encontradas 3 questões
create table t1(
a int not null primary key,
b varchar(50) not null)
create table t2 (
c int not null primary key,
a int not null unique,
constraint fk_1 foreign key (a)
eferences t1(a))
É correto concluir que as tabelas T1 e T2 têm entre si: