select count(cushen) from rsdagl
where cushenf >16 and cusheng<25
union all
select count(cushen) from rsdagl
where cushenf >26 and cusheng<35
union all
select count(cushen) from rsdagl
where cushenf >36 and cusheng<45
select
sum(case when datediff(year,chusheng,getdate())>16 and
when datediff(year,chusheng,getdate())<25 then 1 else 0 end) as '16-25',
sum(case when datediff(year,chusheng,getdate())>25 and
when datediff(year,chusheng,getdate())<36 then 1 else 0 end) as '26-35',
.........