我只是想知道是否可以像db.mydb.find()
中那样在MYSQL中执行一个where子句
示例SQL查询
Select * from TBL_customers where Deliveryaddress = Billingadress
Mongodb中有类似的东西吗?
答案 0 :(得分:1)
$ where运算符执行此操作,例如db.customers.find({$ where:“this.deliveryAddress == this.billingAddress”});
此处mongo文档中的更多详细信息http://docs.mongodb.org/manual/reference/operator/query/where/#op._S_where