Skip to content
Advertisement

How to count SQL data but also have a field that may be present or not?

I’m trying to figure out the right SQL query to group data but also include a boolean (YES/NO) if at least one of the rows grouped has a certain value.

Here’s a concrete example to help visualize:

Let’s say I have some data like this, maybe in a table called “experiments” with fields like this:

And let’s say I have this data:

I want to write a SQL query that does a group_by the user_id so I can have a count, but also includes some boolean value of whether at least one of their rows included a completed_at value.

Thus, I can’t just do:

That ends up like:

What I’d like is some query that lets me end up with something like:

But I’m stumped on that part. I tried searching SO here but I can’t figure out how to even word this as a short, searchable question.

Advertisement

Answer

You use an aggregate function with a conditional expression to check if at least one record in the group has a non-null completed_at value:

I usually prefer using 0/1 rather than TRUE/FALSE since numbers are much more portable across different RDBMS than booleans.

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