1
我想查詢在特定月份創建的數據。找到軌道中的特定月份的數據mongodb
@events = Event.aggregates([
{
'$project': {
_id: 1,
created_at: 1,
'month': {'$month': '$created_at'}
},
},
{month: {'$match': 05}}
])
聚合不是給我任何結果。
我得到了郵遞員響應,
{
"count": 0,
"sum": null,
"avg": null,
"min": null,
"max": null
}
很好用。 thnx – ashusvirus
我將如何在此插入查詢元素?就像我們插入的情況一樣。 – ashusvirus
簡單更多'$ match'元素。我發現這個文檔對這個https://docs.mongodb.com/manual/aggregation/非常有幫助 –