MongoDB / PHP ..如何编写选择查询?

前端之家收集整理的这篇文章主要介绍了MongoDB / PHP ..如何编写选择查询?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何在mongo db中编写查找查询以选择某些值.例如

IN MysqL - SELECT * from things where id=3;
IN Mongo - thingscollection->find(array("_id" => $id))

假设MYSQL查询看起来像这样,

SELECT name,age from things where id=3;

我想知道如何在PHP / MongoDB中编写查找查询以选择特定值?

最佳答案
MysqL: SELECT name,age from things where id=3;  
Mongo: $db->things->find(array("id" => 3),array("name" => 1,"age" => 1));

您可能希望使用mongo _id而不是自己创建的id字段.

有关PHP驱动程序的更多信息:http://php.net/manual/en/mongo.sqltomongo.php
只有sql到Mongo的另一个好的链接http://rickosborne.org/download/SQL-to-MongoDB.pdf

原文链接:https://www.f2er.com/mysql/433898.html

猜你在找的MySQL相关文章