0
I’m looking to put together a vision of the total projects Assets and Closed.
I have a table projetos
with the fields nome
, descricao
, ativo
(can be S or N)
SELECT COUNT(*) as Total FROM projetos WHERE ativo = 'S'
He returns me the total of active projects.
Is there any way to bring the total of active and closed projects in the same query?
Thanks, solved!!
– Alexandre