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

WHAT'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

Hi Chris,

Can you link the specific code challenge?

I would try using your code again. I just used yours and it passed fine.

Make sure there is not a blank space/whitespace at the start. That was the only way I could get your code to fail.

Hey MRK, STILL NOT WORKNG FOR ME. HERE IS WHAT I GET.

Bummer! You should try writing a SELECT query.

I'm glad that got it to pass for you. If you would please mark my answer as correct.

MARK YOU ROCK! That was it, i had a white space before. Thanks so much!