Enunciados de questões e informações de concursos
Sobre o script de criação de tabelas mostrado a seguir,
create table tab1 (a int not null primary key,
b int)
create table tab2 (a int not null primary key,
c int)
create table tab3 (a1 int not null,
a2 int not null,
constraint uq_a1 unique (a1),
constraint up_a2 unique (a2),
constraint fk_a3_a1
foreign key (a1) references tab1,
constraint fk_a3_a2
foreign key (a2) references tab2
)
assinale a afirmativa correta.