Questão: 118350 - Informática Diversos - Banca: - Prova: - Data: 01/01/2023

Considerando a tabela funcionario (mat, nom, sal, matchefe), assinale a alternativa cujo comando exibe o nome de todos os funcionários que não têm subordinado.

  • a
    select f.nom from funcionario f where f.matchefe is not null.
  • b
    select f.nom from funcionario f, funcionario c where c.matchefe < > f.mat.
  • c
    select f.nom from funcionario f where f.mat in (select c.matchefe from funcionario c).
  • d
    select f.nom from funcionario f where f.mat not in (select c.matchefe from funcionario c where c.matchefe is not null).
  • Próxima Questão