<转>MongoDB 查询语句 博客分类: NoSQL mongodb语句
程序员文章站
2024-03-01 15:52:46
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
---查询语句--- Select a, b from users
db.users.find({},{a:1, b:1})
查询表
Select * from users
db.users.find()
查询表
Select * from users where age=33
db.users.find({age:33})
条件查询
Select a, b from users where age=33
db.users.find({age:33},{a:1, b:1})
条件查询
select * from users where age<33
db.users.find({ 'age' :{$lt:33}})
条件查询
select * from users where age>33 and age<=40
db.users.find({ 'age' :{$gt:33,$lte:40}})
条件查询
select * from users where a=1 and b= 'q'
db.users.find({a:1,b: 'q' })
条件查询
select * from users where a=1 or b=2
db.users.find( { $ or : [ { a : 1 } , { b : 2 } ] } )
条件查询
select * from users limit 1
db.users.findOne()
条件查询
select * from users where name like "%Joe%"
db.users.find({ name :/Joe/})
模糊查询
select * from users where name like "Joe%"
db.users.find({ name :/^Joe/})
|
推荐阅读
-
<转>MongoDB 查询语句 博客分类: NoSQL mongodb语句
-
只需一条语句即可记住所有的ORACLE的系统表 博客分类: 数据库心得体会 oracle系统表语句 转自:http://wulinhaoxia5.iteye.com/blog/1518677 只需一条语句即可记住所有的ORACLE的系统表
-
Hibernate查询语句得到一个对象 博客分类: JAVA常用框架 HibernateJava
-
Hibernate查询语句得到一个对象 博客分类: JAVA常用框架 HibernateJava
-
MongoDB文档收集 博客分类: NoSQL MongoDBRailsNoSQLWebBlog
-
【转】MongoDB配置参数详解 博客分类: database
-
【转】MongoDB配置参数详解 博客分类: database
-
浅谈 Java 中 MongoDB NoSQL数据库使用指南 博客分类: 技术总结NOSql JavaMongoDBNoSQL数据库使用指南
-
常用的MongoDB查询语句的示例代码
-
mongodb robomongodb 语句查询