select year(createdate) 年,
month(createdate) 月,
count(1)
from public_cms_arc
where
(userid in
(select id from cms_admin where userid=‘392‘) or userid=‘392‘)
group by year(createdate),
month(createdate)
order by year(createdate) desc,month(createdate) desc
时间: 2024-10-30 08:56:41