php – 如何在Mongo中按日期和日期范围查询

前端之家收集整理的这篇文章主要介绍了php – 如何在Mongo中按日期和日期范围查询前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这相当于这个sql语句?
Select * from example WHERE date = '2011-09-21'

该记录与MongoDate字段一起存储.

我还想知道查询之间的语法.

This would be the equivalent of this sql statement?

Select * from example WHERE date = ‘2011-09-21’

db.example.find({date: dateobject});

对于MongoDB PHP,您将需要使用[MongoDate] [2]类来表示这些日期.其他语言驱动程序通常只使用语言日期构造.

I would also like to know the Syntax of the between query.

MongoDB没有between子句.

要使用“大于”,您需要使用其中一个查询运算符.有关详情,请参见here.简单的例子:

db.example.find({ date: { $gt: lowdate,$lt: highdate } });
原文链接:https://www.f2er.com/php/136477.html

猜你在找的PHP相关文章