Como faço para retornar 0 nesse count quando toda a linha estiver vazia.
select
count(tn) total,
queue_id fila,
ticket_state_id status,
ticket_lock_id bloqueio
from ticket
where queue_id in (7)
and ticket_state_id in (1,4)
and ticket_lock_id in (1)
group by queue_id, ticket_state_id , ticket_lock_id
Se eu fizer assim ele retorna 0 auto sem precisar usar alguma função. Só que precisei adicionar essas outras colunas como mostra no select acima, so que preciso que ele me retorno 0.
select
count(tn) total
from ticket
where queue_id in (7)
and ticket_state_id in (1,4)
and ticket_lock_id in (1)