1. 程式人生 > >RoboMongo命令(版本:Robo 3T 1.1.1)

RoboMongo命令(版本:Robo 3T 1.1.1)

指定 class ref .get gte id號 log 不同類 hist

查詢並排序
db.getCollection(‘working_history‘).find({"identification" : "76170178"}).sort({"pick_time":-1})

多條件查詢
db.getCollection(‘working_history‘).find({"$and":[{"pick_time_str" : "2017-11-08-17-25-00-000-000-000"},{"identification":"76170178"}]})

"$in"可以指定不同類型的條件和值,如正在將用戶的ID號遷移成用戶名的過程中,要做到兩者兼顧的查詢:
db.users.find({"user_id":{"$in":[12345,"refactor"]}})

"$lt","$lte","$gt","$gte"分別對應<,<=,>,>=
如:查詢age >=18 <=30
db.users.find({"age":{"$gte":18,"$lte":30}})

RoboMongo命令(版本:Robo 3T 1.1.1)