Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialLevi K
Full Stack JavaScript Techdegree Student 5,840 PointsSQL Basics Challenge Task
We're back in the sports team database. There's a results table with the columns id, home_team, home_score, away_team, away_score and played_on . Find all the matches in the results table where "Hessle" was playing away as the away team and their score was above 18 points. Type in your command below.
When i try to submit the code it throws an error that reads - Did you select from the 'results' table?
Thanks in advance
3 Answers
Sagar Suri
6,043 Pointsthere is nothing called "Hessel"...its your typo.check it carefully.
Sagar Suri
6,043 PointsAdd your query as well. So that I can rectify the error. My Query will be like this:
SELECT * FROM results WHERE away_team="Hessle" AND away_score>18;
Levi K
Full Stack JavaScript Techdegree Student 5,840 PointsSorry about that this is my first post. I had checked the checkbox that said include my code so i thought that it had done it on its own.
'''SQL <p>SELECT * FROM results WHERE away_team = "Hessel" AND away_score > 18;</p> '''
Sagar Suri
6,043 PointsAnytime :-) Happy Coding!
Levi K
Full Stack JavaScript Techdegree Student 5,840 PointsLevi K
Full Stack JavaScript Techdegree Student 5,840 PointsWOW! I Cant believe that was over looked. However, I knew it was user error. Thank you Sagar!