Skip to content
Advertisement

How to count rows by date for each of two values?

I have a large dataset in SQL Server that contains two date fields and a foreign key field (among others):

I need a query that can count the number of rows for each day, but to count them for each distinct value in the type_id column. The closest I can wrap my brain around right now is returning the total count of all rows for a particular date:

How do I split this up to return an additional column for each value of type_id? For example:

I assume I will need at least one subquery, but that is beyond my current knowledge.

Advertisement

Answer

You can use a PIVOT or a conditional aggregate.

PIVOT:

Conditional aggregate:

Example db<>fiddle

Use whichever one is more intuitive for you to learn and understand, though I will say conditional aggregate is certainly easier to maintain when, say, type_id = 4 shows up later, as @jarlh suggested in a comment.

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