温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

mongodb查询语句的案例

发布时间:2020-07-30 10:17:25 阅读:174 作者:清晨 栏目:编程语言
GO开发者专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

小编给大家分享一下mongodb查询语句的案例,相信大部分人都还不怎么了解,因此分享这边文章给大家学习,希望大家阅读完这篇文章后大所收获,下面让我们一起去学习方法吧!

如果觉得 Mongodb 语句不太好理解,可以和 SQL 语句进行对比,学起来要容易很多。

查询(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/})

count

select count(*from article
db.article.count()

不等于

select * from article where author != "a"
db.article.find({ "author": { "$ne""a" }})

以上是mongodb查询语句的案例的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI

开发者交流群×