Replies: 1 comment
-
How to execute this? select
DATE_FORMAT(updated_at, '%Y%m%d') AS date,
count(*)
from
table_a
group by
date |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to use
SELECT MONTH(updated_at), DAY(updated_at), count(*) from table_a GROUP BY MONTH(updated_at), DAY(updated_at)
in MySQL?Beta Was this translation helpful? Give feedback.
All reactions