如果不知道都有哪些年呢?应该怎么写?以年份为列,有人数时就显示该年份及人数,没有不显示年份及人数?
我觉得如果按行表示的话,可以这样写,但是也不确定对不对,但如果按列写我不知道如何表示
select 总数,count(* ) as 人数 from emp
union all
select 年份=to_char(hiredate,'yyyy'),count (*) as 人数 from emp
group by to_char(hiredate,'yyyy')
我觉得如果按行表示的话,可以这样写,但是也不确定对不对,但如果按列写我不知道如何表示
select 总数,count(* ) as 人数 from emp
union all
select 年份=to_char(hiredate,'yyyy'),count (*) as 人数 from emp
group by to_char(hiredate,'yyyy')
2017-09-08
举报