在MongoDB中,查詢(xún)文檔型數(shù)據(jù)庫(kù)主要使用查詢(xún)操作符和查詢(xún)方法。以下是一些基本的查詢(xún)操作:
db.collection_name.find_one({key: value})
例如,查找users
集合中年齡為30的用戶(hù):
db.users.find_one({age: 30})
db.collection_name.find({key: value})
例如,查找users
集合中年齡大于等于18的用戶(hù):
db.users.find({age: {$gte: 18}})
db.collection_name.find({key: {$operator: value}})
例如,查找users
集合中年齡小于25的用戶(hù):
db.users.find({age: {$lt: 25}})
db.collection_name.find({$and: [{key1: value1}, {key2: value2}, ...]})
db.collection_name.find({$or: [{key1: value1}, {key2: value2}, ...]})
db.collection_name.find({$not: {key: value}})
例如,查找users
集合中年齡大于等于18且名字為"John"的用戶(hù):
db.users.find({$and: [{age: {$gte: 18}}, {name: "John"}}])
db.collection_name.find({key: {$regex: /pattern/}})
例如,查找users
集合中名字包含"John"的用戶(hù):
db.users.find({name: {$regex: /John/}})
db.collection_name.find({}, {key1: 1, key2: 1, ...})
例如,查找users
集合中名字和年齡字段:
db.users.find({}, {name: 1, age: 1, _id: 0})
db.collection_name.find({key: value}).skip(n).limit(m)
例如,查找users
集合中年齡大于等于18的用戶(hù),跳過(guò)前10個(gè)結(jié)果,限制返回3個(gè)結(jié)果:
db.users.find({age: {$gte: 18}}).skip(10).limit(3)
這些查詢(xún)操作可以根據(jù)實(shí)際需求進(jìn)行組合使用,以滿足不同的查詢(xún)需求。