ComeçarComece de graça

Mistakes against query processing order

eSymphony wants to find out what composers don't have songs shorter than 1,000,000 milliseconds, and this only for tracks where the genre id equals 1.

You have received a query from someone that tried to solve this problem. They don't have the query processing order knowledge that you do and have made some mistakes. You are kind enough to help them out.

Este exercício faz parte do curso

Introduction to Oracle SQL

Ver curso

Instruções do exercício

  • Adapt the query that was given to you to make it run without errors.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

-- Adapt this query to make it run without errors
SELECT Composer, MIN(Milliseconds) AS MinSongLength
FROM Track
WHERE GenreId = 1 AND MIN(Milliseconds) > 1000000
GROUP BY Composer
ORDER BY MinSongLength
Editar e executar o código