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 trialsandeep reddy
Courses Plus Student 439 Pointsfacing difficulty in WHERE
WHERE
sandeep reddy
Courses Plus Student 439 PointsWe have a database that runs a sports team's website. In the results table we have the columns like id, home_team, home_score, away_team, away_score, played_on. question: Find all results where the home team's score is above 12.
Steven Parker
231,248 PointsThat sounds like instructions for a challenge. Please provide a link to the challenge page, and also show the entire SQL query that you have constructed so far.
1 Answer
Luc de Brouwer
Full Stack JavaScript Techdegree Student 17,939 PointsHi Reddy,
The basic syntax for a WHERE clausule is very simple :
SELECT rows FROM table WHERE row(s) LIKE 'value';
So to provide an answer for your problem, try something like this : SELECT * FROM results WHERE home_score > 12;
If you want more information about SQL and its syntax I highly suggest you visiting W3schools. As a reference to this subject here is a link that should help you in the future : https://www.w3schools.com/sql/sql_where.asp
Steven Parker
231,248 PointsSteven Parker
231,248 PointsCan you be more specific about what kind of difficulty you are having? If it relates to a query, please show the entire query. And if it's part of a challenge, please provide a link to the challenge page.