ID 1664065 Banca NC-UFPR Órgão ITAIPU BINACIONAL Ano 2015 Provas NC-UFPR - 2015 - ITAIPU BINACIONAL - Computação ou Informática - Sistemas Disciplina Banco de Dados Assuntos SQL Assinale a alternativa cujo comando está com a sintaxe correta. Alternativas select chavevendedor, sum(valorvendas) from vendas where (chavefilial=1) and (sum(valorvendas)>=1000000) order by sum(valorvendas) select chavevendedor, sum(valorvendas) from vendas where chavefilial=1 having sum(valorvendas)>=1000000 order by sum(valorvendas) select chavevendedor, sum(valorvendas) from vendas group by chavevendedor having sum(valorvendas)>=1000000 where chavefilial=1 order by sum(valorvendas) select chavevendedor, sum(valorvendas) from vendas where chavefilial=1 group by chavevendedor having sum(valorvendas)>=1000000 order by sum(valorvendas) select chavevendedor, sum(valorvendas) from vendas where chavefilial=1 having sum(valorvendas)>=1000000 group by chavevendedor order by sum(valorvendas) Responder Comentários SELECT expression1, expression2, ... expression_n, aggregate_function (aggregate_expression) FROM tables [WHERE conditions] GROUP BY expression1, expression2, ... expression_n HAVING having_condition; https://www.techonthenet.com/oracle/having.php Gabarito: d)