the time field in the order table is create_date,. Now count the number of orders per day or month.
the current statistics are as follows:
select DATE_FORMAT (create_date,"%Y% m% d") time,count (*) from order group by time
that"s what it looks like:
.
June 01, 2018 87
June 4, 2018 3
June 05, 2018
there may not be a single order for a few days, so you can"t find out the date and quantity of that day.
as I simulated above, No. 2 and No. 3 do not exist.
is hoping to find out
06.022018
03June2018