select a.count1,b.count2,c.count3 from 
(select count(*) count1 from tablename where sysdate < datecol + 3) a,
(select count(*) count1 from tablename where sysdate >= datecol + 3 and sysdate < datecol +5) b,
(select count(*) count1 from tablename where sysdate >= datecol + 5) c;