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 trialMiguel Sánchez
10,365 PointsI don't get it
SELECT COUNT(*) AS shipped_today FROM orders WHERE status="shipped" || DATE('now');
That makes me ERROR. What is happening? :/
3 Answers
Steven Parker
231,248 PointsIt looks like you have problems in your WHERE
clause.
- you probably don't want to concatenate a string with a date
- you probably meant to perform a comparison on the date
- the two separate comparisons should be joined with "
AND
"
You didn't provide a link to the course, so I'm trying to remember just what the instructions are — but if believe the filter should be something like this:
... WHERE status="shipped" AND ordered_on = DATE('now');
Miguel Sánchez
10,365 PointsThank you so much for your answer :) That was my first question in the forum so, this is the link of the excercise
https://teamtreehouse.com/library/reporting-with-sql/date-and-time-functions/todays-report
Miguel Sánchez
10,365 PointsThanks again! Now I get it!