select count(id),year(created_at),month(created_at) from table where published_state = 'published' group by year(created_at),month(created_at);
我尝试过类似的东西:
results = Table.select('count(id),month(created_at)').where('published_state LIKE ?','published').group('year(created_at),month(created_at)')
但它不会返回我想要的东西.
我只是得到了回报
[#
我怎么能做到这一点?
谢谢!
最佳答案
试试这个:
Table.where(:published_state => 'published').
group('year(created_at)').group('month(created_at)').count(:id)
结果的格式并不是我所期望的(它是一个像[年,月]和计数值这样的数组键的哈希),但它可能会满足你的目的吗?
原文链接:https://www.f2er.com/mysql/433909.html
猜你在找的MySQL相关文章