Skip to content
Advertisement

How can I count unique clicks across jobs for each category

I store link performance attributed to different categories in a sent table like this…

I am trying to create a query that can show me the customer_id’s across the Y axis and the different categories across the X axix. What complicates this is that I only want count a click for every unique Job ID. I have attempted it using the query below but this is on just one category. The categories I want to search against are fixed (around 10 in total) and wanted to know how I can do this in the most efficient way. The table could have MILLIONS of records.

EDIT: Here are the expected results, please refer to the fiddle to see the data.

EDIT 2: With sample data used:

DB Fiddle (including sample data)

Advertisement

Answer

You can use conditional aggregation here:

You will have to append one COUNT(..) line per category.

Result:

View on DB Fiddle

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