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 trialChris Loucks
6,788 PointsWHAT'S WRONG WITH MY CODE
Here is the questions from coding challenge in MYSQL
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 "2015-09-01" AND "2015-09-30";
What is wrong with this? I can not figure it out.
4 Answers
Mark Truitt
17,230 PointsHi Chris,
Can you link the specific code challenge?
Chris Loucks
6,788 PointsHi Mark, Yes I can here ya go...
Mark Truitt
17,230 PointsMake sure there is not a blank space/whitespace at the start. That was the only way I could get your code to fail.
Chris Loucks
6,788 PointsHey MRK, STILL NOT WORKNG FOR ME. HERE IS WHAT I GET.
Bummer! You should try writing a SELECT query.
Mark Truitt
17,230 PointsI'm glad that got it to pass for you. If you would please mark my answer as correct.
Chris Loucks
6,788 PointsMARK YOU ROCK! That was it, i had a white space before. Thanks so much!
Mark Truitt
17,230 PointsMark Truitt
17,230 PointsI would try using your code again. I just used yours and it passed fine.