Is it possible to construct complex queries against noSQL DB

前端 未结 4 715
予麋鹿
予麋鹿 2021-02-07 15:33

I have been researching noSQL DB and have not been able to satisfactorily answer this for myself: Is it possible to construct complex queries against noSQL DB?

The type

4条回答
  •  有刺的猬
    2021-02-07 16:26

    In mongodb, you would just do something like db.mytbl.find({"vara": { $gt: 10}, "varb": 2, "varc": {$lt: 100 }})

    See here, and here for examples

提交回复
热议问题