|
Posted by Ed Murphy on 09/21/07 02:07
Arto V Viitanen wrote:
> Ed Murphy wrote:
>> Terry Olsen wrote:
>>
>>> Yes, that works. But it doesn't show the row with no completes. So
>>> unless a person has at least one complete, they won't show.
>>> This will work for me, but is there a way to get it to include the
>>> people with no completes?
>> select Name, count(case Status when 'Complete' then 1 else 0 end)
>> from <<tablename>>
>> group by Name
>> order by Name
>
> I guess you meant
>
>
> select Name, sum(case Status when 'Complete' then 1 else 0 end)
Yes, sorry.
Navigation:
[Reply to this message]
|