📅  最后修改于: 2022-03-11 15:05:05.531000             🧑  作者: Mango
select
to_char(a.create_date,'yyyy') as date_year,
count(*) as num
from sys_bug a
left join sys_user u on u.id = a.create_by
left join sys_office o on o.id = u.office_id
group by to_char(a.create_date,'yyyy')
1234567