FAQ: Math and Date Functions - Date and Time Functions III

This community-built FAQ covers the “Date and Time Functions III” exercise from the lesson “Math and Date Functions”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Analyze Data with SQL

FAQs on the exercise Date and Time Functions III

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in Language Help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to Language Help and Tips and Resources. If you are wanting feedback or inspiration for a project, check out Projects.

Looking for motivation to keep learning? Join our wider discussions in Community

Learn more about how to use this guide.

Found a bug? Report it online, or post in Bug Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

I think something wrong with the given solution for this topic.
Offered query

SELECT STRFTIME('%d', order_date), COUNT(STRFTIME('%d', order_date))
FROM bakery
ORDER BY 2;

gives the first date in a table and total number of rows

STRFTIME(‘%d’, order_date) COUNT(STRFTIME(‘%d’, order_date))
16 30

My solution is

SELECT
  STRFTIME('%Y-%m-%d', order_date) order_date,
  COUNT(*) order_quantity
FROM 
  bakery
GROUP BY 
  STRFTIME('%d', order_date);

which results in six dates and quantities of orders on each date

order_date order_quantity
2020-08-16 9
2020-08-17 5
2020-08-18 6
2020-08-19 2
2020-08-20 6
2020-08-21 2

Instruction for the last step is:
“Use STRFTIME() with the COUNT() function to find out how many orders were made on each day”
Nothing to indicate that the output should be sorted in descending order.

I’m not sure how the count(*) function works so I used this alternate solution and got the same results

with days as (select STRFTIME('%d', order_date) as 'order_day' from bakery)
select order_day, count(order_day) from days
group by order_day
order by 2 desc;

I guess count(*) is self-referential and counts the records as they are displayed in the current query?

There’s no need to guess, have a wee look at the docs and you can find the description:
https://www.sqlite.org/lang_aggfunc.html#count

It’s kind of common sense bro

The task could’ve hinted that we only want the day number though.
I used

‘%Y %m %d’

I wrote it like this:

SELECT STRFTIME(‘%Y %m %d’, order_date), COUNT(‘%d’)

FROM bakery

GROUP BY 1

ORDER BY 2 DESC;

Was marked wrong, but got a similar result.