We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just looked at the first question in train.json and it is wrong.
train.json
Question: Name movie titles released in year 1945. Sort the listing by the descending order of movie popularity.
The answer in train.json is
SELECT movie_title FROM movies WHERE movie_release_year = 1945 ORDER BY movie_popularity DESC LIMIT 1
This is wrong as it will show only the movie title of the MOST popular movie released in 1945. The right answer should not have LIMIT 1.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Just looked at the first question in
train.json
and it is wrong.Question: Name movie titles released in year 1945. Sort the listing by the descending order of movie popularity.
The answer in train.json is
This is wrong as it will show only the movie title of the MOST popular movie released in 1945. The right answer should not have LIMIT 1.
The text was updated successfully, but these errors were encountered: