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 Reporting with SQL Date and Time Functions Today's Report

Am I using the count function correctly here?

This one is really tatering my tots.

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,253 Points

Without seeing the code you're trying its a bit difficult for me to answer. But I'll try to walk you through what you'll need rather than just give you the query! :-)

The query you need is quite a lengthy one.

  • You need the orders table.
  • Select a count() from every field in the table
  • Of records that match records with the value of shipped. (So you'll need to work with the WHERE clause)
  • That have today's date. There's a dynamic method you can use to get today's value

Good luck and let me know how you get on.