Buscar

Quanto às informações do texto, assinale a opção que apresenta corretamente a sequência de comandos, utilizando a linguagem SQL do Oracle 10g, que ...

Quanto às informações do texto, assinale a opção que apresenta corretamente a sequência de comandos, utilizando a linguagem SQL do Oracle 10g, que permite fazer a seleção do nome dos funcionários que trabalham em projetos com orçamento (ORCAM) superior a 100.

A select distinct c.fnome from alocacao a, projeto b, funcionario c where a.fnu = c.fnu and a.fnu not in (select a.fnu from alocacao a, projeto b where orcam > 100 and (a.fnu || b.pnu) not in (select a.fnu || b.pnu from alocacao a, projeto b where a.pnu = b.pnu))
B select distinct c.fnome from alocacao a, projeto b, funcionario c where a.fnu = c.fnu and a.fnu in (select a.fnu from alocacao a, projeto b where orcam > 100 and (a.fnu || b.pnu) not in (select a.fnu || b.pnu from alocacao a, projeto b where a.pnu = b.pnu))
C select distinct c.fnome from alocacao a, projeto b, funcionario c where a.fnu < > c.fnu and a.fnu not in (select a.fnu from alocacao a, projeto b where orcam > 100 and (a.fnu || b.pnu) in (select a.fnu || b.pnu from alocacao a, projeto b where a.pnu = b.pnu))
D select distinct c.fnome from alocacao a, projeto b, funcionario c where a.fnu = c.fnu and a.fnu in (select a.fnu from alocacao a, projeto b where orcam > 100 and (a.fnu || b.pnu) in (select a.fnu || b.pnu from alocacao a, projeto b where a.pnu = b.pnu))
E select distinct c.fnome from alocacao a, projeto b, funcionario c where a.fnu < > c.fnu and a.fnu not in (select a.fnu from alocacao a, projeto b where orcam > 100 and (a.fnu || b.pnu) not in (select a.fnu || b.pnu from alocacao a, projeto b where a.pnu = b.pnu))