我有这样的结构:
{
"_id" : ObjectId("562dcec2430a5684fedce1b0"),
"date" : ISODate("2015-10-26T06:57:06.619Z"),
"query" : "google com"
}
如何过滤那些日期是 2015-10-25 的查询?或者如果我想过滤一天前提出的查询,是否有这样的 c++ 表达式:
auto_ptr<DBClientCursor> cursor =
mongo_conn->query("database1.collection1",
BSON("date" <<
BSON("$gte" << BSON(datenow - "1 day")
<< "$lt" << BSON(datenow))));
非常感谢!!