Joke Collection Website - Blessing messages - SQL sends many short messages every day according to time statistics.

SQL sends many short messages every day according to time statistics.

Statistical total

Select count(*) as the total from the table with the time field between the start time and the end time.

Count the total number of emails sent by each user within a specified time period.

Select user,count(*)as user send number from table where time field between start time and end time group by user。