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

相关文章:

  • 2021-09-11
  • 2021-07-18
  • 2022-02-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-15
  • 2021-11-04
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-23
  • 2021-12-28
  • 2022-12-23
  • 2022-02-08
相关资源
相似解决方案