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 trialsuyesh bhandari
15,328 PointsWhat am i doing wrong here.
Challenge Task 2 of 2 We're back in our sports team database with the results table. The columns are id, home_team, home_score, away_team, away_score and played_on.
There are 30 days in September. Find all the games played in the results table in September 2015.
My Code
SELECT *
FROM results
WHERE played_on BETWEEN "2017-09-01" AND "2017-09-30";
Error i am getting
Bummer! You're missing the value of "2015-09-01"
1 Answer
Sigurd Melsom
6,107 PointsUse single quotes instead of double: SELECT * FROM results WHERE played_on BETWEEN '2017-09-01' AND '2017-09-30';
suyesh bhandari
15,328 Pointssuyesh bhandari
15,328 PointsThat worked. Thanks.
So when should i use double vs single quotes?
Sigurd Melsom
6,107 PointsSigurd Melsom
6,107 PointsDouble quotes are generally not used in SQL, read more here: https://stackoverflow.com/questions/1992314/what-is-the-difference-between-single-and-double-quotes-in-sql