World Cup Database - Build a World Cup Database NEED HELP ASAP!

Tell us what’s happening:

last step for queries.sh i exactly got the expected output in bash but it still saying there’s an error with my queries.sh script or something - well the error is not showing in bash terminal ! this is frustrating somehow! I already got it right!

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Edg/124.0.0.0

Challenge Information:

World Cup Database - Build a World Cup Database




I had the exact same issue!

Here’s your mistake and how to fix it:
(To be fair, the prompt doesn’t specify this requirement. The only way to tell is by looking very closely at the expected output file…)

In the query:

Year and team name of all the champions:

The tests expect the output to be listed in ascending order by year.
Simply tack on the following to the end of your query:

ORDER BY year

Hope this helps!

1 Like