Computer Science, asked by viswaboy50, 6 months ago

how to select query daily and monthly report?​

Answers

Answered by VIVEKPARIDA
7

Answer:

I'm not sure if I understood your question correctly, but this gives you all the users created per day:

SELECT year(userCreated), month(userCreated), day(userCreated), count(*) FROM Users GROUP BY year(userCreated), month(userCreated

Similar questions