Ir para o conteúdo principal
Milhares de questões atuais de concursos.

Considere as tabelas EMPREGADOS, PROJETOS, e PARTICIPACOES definidas abaixo usando SQL (padrão SQL2 ou superior), que representam a participação de empregados em projetos de uma empresa.

create table EMPREGADOS
(code integer not null,
nomee varchar(60) not null,
pais char(2) not null,
gerente integer,
primary key(code),
foreign key (gerente) references EMPREGADOS);

create table PROJETOS
(codp integer not null,
nomep varchar(60) not null,
pais char(2) not null,
orcamento numeric(15,2) not null,
gerente integer not null,
primary key(codp),
foreign key(gerente) references EMPREGADOS);

create table PARTICIPACOES
(codp integer not null,
code integer not null,
horas integer not null,
funcao varchar(30) not null,
primary key(codp, code),
foreign key (code) references EMPREGADOS,
foreign key(codp) references PROJETOS);

Observe a consulta em SQL abaixo, no mesmo padrão.

SELECT *
FROM projetos natural join participacoes natural join empregados
WHERE orcamento > 10000;

Quantos atributos têm a tabela resultado?

© Aprova Concursos - Al. Dr. Carlos de Carvalho, 1482 - Curitiba, PR - 0800 727 6282