我觉得如果按行表示的话,可以这样写,但是也不确定对不对,但如果按列写我不知道如何表示
select 总数,count(* ) as 人数 from emp
union all
select 年份=to_char(hiredate,'yyyy'),count (*) as 人数 from emp
group by to_char(hiredate,'yyyy')
找出最小的年份,和最大的年份,然后遍历一边可以吗?