如何在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;
最佳答案
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