Skip to content
Advertisement

SQL query to count the number of rows in different columns with group by clauses

In my Mysql database, I have 2 columns that store the start and end date of the process, respectively. I need to write a query that allows me to count the number of rows for each month in each column, and presents the count separately.

Table example:

I want as a result:

Advertisement

Answer

Assuming your start date and end date columns are of datatype date, you can do –

DB fiddle – https://dbfiddle.uk/?rdbms=mysql_8.0&fiddle=84ecddb9f5ed431ddff6a9eaab87e5df

PS : If your dates only have one year (2020 as your example) this would work, however ideally if you have different years in the data, consider having the year in the output as well and in that case use the same syntax ie Year(datefield) and add it in the select and group by in the sub-queries (same way as month in the above query).

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement