select count(distinct id) from svn where name='ant' and type='Bug'
and
select count(distinct id) from svn where name='ant' and type='Feature'
Is it possible to combine them into a single query that might reduce the execution time compared to running them individually?
Thanks for answering.