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 trialJordan Petty
4,844 PointsReporting w/ SQL - Today's Report
Having trouble with this one and not sure how to get this correct:
https://teamtreehouse.com/library/reporting-with-sql/date-and-time-functions/todays-report
> SELECT COUNT(shipped_today) WHERE status = "shipped" AS shipped_today AND ordered_on = DATE("now") FROM orders;
1 Answer
Steven Parker
231,248 PointsIt looks like you have all the parts, but not quite in order:
- the alias should follow the function
- the
FROM
clause comes before theWHERE
clause - you can't count the alias but you can count the records ("
*
")
SELECT COUNT(*) AS shipped_today FROM orders WHERE status = "shipped" AND ordered_on = DATE("now");