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 trial

Databases

Find all the matches in the results table where "Hessle" was playing away as the away team and their score was above 18

Find all the matches in the results table where "Hessle" was playing away as the away team and their score was above 18

1 Answer

Demetris Partou
Demetris Partou
3,003 Points

Assuming that the away team column is away_team and that the away score column is away_score, your query should look like the below:

SELECT * FROM results WHERE away_team = "Hessle" AND away_score > 18;

You will be filtering the data using the WHERE keyword as you have conditions you need to be satisfied. In this case, the away team must be Hessle, and you want to eliminate every other row. Use the AND keyword to add a second condition, in this case, the score must be above 18.

You want to use AND and not OR because you require both conditions to be true for your result to be returned.

Hope this helps.