You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The dev-query (line 484, 485): "SELECT DISTINCT winner_name , winner_rank FROM matches ORDER BY winner_age LIMIT 3"
generates the wrong output, which is related to the question:
"What are the names and ranks of the three youngest winners across all matches?"
To make the query match with the question the SQL should be: SELECT winner_name, winner_rank FROM matches GROUP BY winner_name ORDER BY winner_age LIMIT 3
The text was updated successfully, but these errors were encountered:
This file contains a list of all tables and if they have a primary key (or not), I would guess that for some of these tables, which have no primary key this should not be the case. p1_table_attributes.csv
The dev-query (line 484, 485):
"SELECT DISTINCT winner_name , winner_rank FROM matches ORDER BY winner_age LIMIT 3"
generates the wrong output, which is related to the question:
"What are the names and ranks of the three youngest winners across all matches?"
To make the query match with the question the SQL should be:
SELECT winner_name, winner_rank FROM matches GROUP BY winner_name ORDER BY winner_age LIMIT 3
The text was updated successfully, but these errors were encountered: