MongoDB中常用的语句有哪些
发布时间:2022-02-18 14:54:03 所属栏目:MySql教程 来源:互联网
导读:这篇文章给大家分享的是有关MongoDB中常用的语句有哪些的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。 如果觉得 Mongodb 语句不太好理解,可以和 SQL 语句进行对比,学起来要容易很多。 1. 查询(find) 查询所有结果 select
这篇文章给大家分享的是有关MongoDB中常用的语句有哪些的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。 如果觉得 Mongodb 语句不太好理解,可以和 SQL 语句进行对比,学起来要容易很多。 1. 查询(find) 查询所有结果 select * from article db.article.find() 指定返回哪些键 select title, author from article db.article.find({}, {"title": 1, "author": 1}) where条件 select * from article where title = "mongodb" db.article.find({"title": "mongodb"}) and条件 select * from article where title = "mongodb" and author = "god" db.article.find({"title": "mongodb", "author": "god"}) or条件 select * from article where title = "mongodb" or author = "god" db.article.find({"$or": [{"title": "mongodb"}, {"author": "god"}]}) 比较条件 select * from article where read >= 100; db.article.find({"read": {"$gt": 100}}) > $gt(>)、$gte(>=)、$lt(<)、$lte(<=) select * from article where read >= 100 and read <= 200 db.article.find({"read": {"$gte": 100, "lte": 200}}) in条件 select * from article where author in ("a", "b", "c") db.article.find({"author": {"$in": ["a", "b", "c"]}}) like select * from article where title like "%mongodb%" db.article.find({"title": /mongodb (编辑:成都站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
站长推荐