zoukankan      html  css  js  c++  java
  • Mongodb查询

    https://www.cnblogs.com/t2xingzhe/p/3555268.html

    数据库查询

    db.ser.find()#select * from ser;
    只输出id和time字段,第一个参数为查询条件,空代表查询所有
    db.ser.find({"name" : scott})#select * from ser where name='scott'; 
    db.ser.find({},{id: 1,time:1})#select id,time from ser;
    查询根据name:scott,time字段的记录
    db.ser.find({"name":"scott"},{time:1})#select time from ser where name='scott';
    根据name:scott,查询ID,time字段的记录
    db.ser.find({"name":"scott"},{ID:1,time:1})#select id,time from ser where name='scott';
    根据多个条件查询记录,不显示content
    db.ser.find({"objectId":"P400000800","type":"equipment"},{content:0})#select 除content的列 from uer where "objectId"="P400000800";
    根据时间查询指定范围的数据,$lt(<) $lte(<=) $gt(>) $gte(>=) $ne(<>)
    db.test.find({"gmtTime" : {"$ne":"2018-09-24T3:33:45Z"}}) select * from test where gmtTime <> "joe" 
    db.test.find({"gmtTime":{"$lt":ISODate("2018-09-24T3:33:45Z")}})
    db.test.find({"gmtTime":{"$gt":ISODate("2017-09-24T3:33:45Z")}})
    db.test.find({"gmtTime":{"$gte":ISODate("2018-01-09T14:24:40Z"),"$lt":ISODate("2018-01-09T14:40:43Z")}})

    db.emp.find({"ticket_no" : {"$in" : [725, 542, 390]}}) #select * from emp where ticket_no in (725, 542, 390) 
    db.emp.find({"ticket_no" : {"$nin" : [725, 542, 390]}}) #select * from emp where ticket_no not in (725, 542, 390) 
    db.emp.find({"$or" : [{"ticket_no" : 725}, {"winner" : true}]}) #select * from emp where ticket_no = 725 or winner = true ;
    db.emp.find({"id_num" : {"$mod" : [5, 1]}}) #select * from emp where (id_num mod 5) = 1 
    db.emp.find({"$not": {"age" : 27}}) #select * from emp where not (age = 27) 
    db.emp.find({"username" : {"$in" : [null], "$exists" : true}}) #select * from emp where username is null // 如果直接通过find({"username" : null})进行查询,那么连带"没有username"的纪录一并筛选出来 
    db.emp.find({"name" : /joey?/i}) // 正则查询,value是符合PCRE的表达式 
    db.food.find({fruit : {$all : ["apple", "banana"]}}) // 对数组的查询, 字段fruit中,既包含"apple",又包含"banana"的纪录 
    db.food.find({"fruit.2" : "peach"}) // 对数组的查询, 字段fruit中,第3个(从0开始)元素是peach的纪录 
    db.food.find({"fruit" : {"$size" : 3}}) // 对数组的查询, 查询数组元素个数是3的记录,$size前面无法和其他的操作符复合使用 
    db.emp.findOne(criteria, {"comments" : {"$slice" : 10}}) // 对数组的查询,只返回数组comments中的前十条,还可以{"$slice" : -10}, {"$slice" : [23, 10]}; 分别返回最后10条,和中间10条 
    db.userinfo.find({"name.first" : "Joe", "name.last" : "schere"}) // 嵌套查询 
    db.blog.find({"comments" : {"$elemMatch" : {"author" : "joe", "score" : {"$gte" : 5}}}}) // 嵌套查询,仅当嵌套的元素是数组时使用, 
    db.foo.find({"$where" : "this.x + this.y == 10"}) // 复杂的查询,$where当然是非常方便的,但效率低下。对于复杂查询,考虑的顺序应当是 正则 -> MapReduce -> $where 
    db.foo.find({"$where" : "function() { return this.x + this.y == 10; }"}) // $where可以支持javascript函数作为查询条件 
    db.foo.find().sort({"x" : 1}).limit(1).skip(10); // 返回第(10, 11]条,按"x"进行排序; 三个limit的顺序是任意的,应该尽量避免skip中使用large-number

    db.mobile.find({name:/guido/}); #select * from mobile where name like "%guido%"; 
    db.mobile.find({name:/^guido/});  #select * from mobile where name like "guido%";

  • 相关阅读:
    Sqli-labs Less-28a 绕过unions+select过滤 union注入
    eclipse安装freemarker-ide插件
    Eclipse调试时出现source not found的问题
    POJ 1509 Glass Beads 后缀自动机 模板 字符串的最小表示
    1028/3/7 被踩爆的省选模拟赛 30分
    字符串的模板 Manacher kmp ac自动机 后缀数组 后缀自动机
    2018/3/6 省选模拟赛 60分
    埃及分数 a* 搜索 知识点mark
    UOJ #35. 后缀排序 后缀数组 模板
    BZOJ 4566 JZYZOJ 1547 [haoi2016T5]找相同子串 后缀数组 并查集
  • 原文地址:https://www.cnblogs.com/elontian/p/9294952.html
Copyright © 2011-2022 走看看