(1,0) 1 -
Observe as tabelas DEPARTAMENTOS e FUNCIONARIOS, definidas abaixo pelos comandos SQL, que representam os departamentos de uma empresa e seus funcionários.Create table DEPARTAMENTOS (codd char(5) not null primary key, nomed varchar(60) not null);Create table FUNCIONARIOS (matr char(2) not null primary key, nomef varchar(200) not null, salario numeric(9,2) not null, codd char(5) not null, foreign key (codd) references DEPARTAMENTOS);Considere as seguintes instâncias dessas tabelas:
Considere a consulta SQL abaixo, que segue o padrão SQL2:Select nomed From FUNCIONARIOS NATURAL JOIN DEPARTAMENTOS WHERE salario > 5000 GROUP BY codd, nomed HAVING COUNT(*) > 1De acordo com os dados acima, é correto afirmar que a consulta SQL retornará
Recuperar senha