Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个收藏:人。我想查询 people.lastname = people.firstname 的文档
这可能吗 ?
正如 Sergio 正确指出的那样,$where性能很差,但如果你仍然可以接受,那么你会这样做:
$where
db.people.find( { $where: "this.lastname == this.firstname" } );
不,目前这是不可能的(以有效的方式)。它可能可以使用$where,但性能很差,我不建议在实际应用程序中使用它。