Skip to content
Advertisement

How to return the number of sets for each date

I am running a query that returns:

I need to also return the number of Sets for each date:

Advertisement

Answer

You may add the count window function to your select clause eg

Mysql 8+

Older Mysql Versions You may use variables or aggregates to achieve your count

Schema (MySQL v5.5)


Query #1

Date Set Data NoSets
2021-07-02 00:00:00 3 C 3
2021-07-02 00:00:00 2 B 3
2021-07-02 00:00:00 1 A 3
2021-08-15 00:00:00 1 D 1
2021-10-27 00:00:00 2 F 2
2021-10-27 00:00:00 1 E 2

Query #2

Date Set Data NoSets
2021-07-02 00:00:00 1 A 3
2021-07-02 00:00:00 2 B 3
2021-07-02 00:00:00 3 C 3
2021-08-15 00:00:00 1 D 1
2021-10-27 00:00:00 1 E 2
2021-10-27 00:00:00 2 F 2

or

View on DB Fiddle

Let me know if this works for you.

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