zoukankan      html  css  js  c++  java
  • Mongo可视化工具基本操作

    一、可视化工具界面(字段名可以不加引号)

    二、查询(query)
    1.日期
    如:"F1":ISODate("2017-07-26T16:00:00Z")
    2.条件
    (>) 大于 - $gt-------- greater than
    (<) 小于 - $lt-------- less than
    (>=) 大于等于 - $gte--------- gt equal
    (<= ) 小于等于 - $lte --------- lt equal
    (!= ) 不等于 - $ne ----------- not equal
    (= ) 等于 - $eq ----------- equal
    如:"F2":{$eq:"55路"} , "F3":{$eq:100}
    注:相等时可以简写 "F3":100
    三、排序(order)
    1.其中 1 为升序排列,而-1是用于降序排列。
    如:"F1":1
    四、返回字段(projection )
    1.映射(projection )声明用来限制所有查询匹配文档的返回字段。projection以文档的形式列举结果集中要包含或者排除的字段。可以指定要包含的字段(例如:{field:1})或者指定要排除的字段(例如:{field:0})。默认_id是包含在结果集合中的,要从结果集中排除_id字段,需要在projection中指定排除_id字段({_id:0})。除了_id字段,不能在一个projection中联合使用包含和排除语意。
    如:"F11":1========>返回F11字段和_id字段
    F11:1,_id:0========>返回F11字段

  • 相关阅读:
    Leetcode Substring with Concatenation of All Words
    Leetcode Divide Two Integers
    Leetcode Edit Distance
    Leetcode Longest Palindromic Substring
    Leetcode Longest Substring Without Repeating Characters
    Leetcode 4Sum
    Leetcode 3Sum Closest
    Leetcode 3Sum
    Leetcode Candy
    Leetcode jump Game II
  • 原文地址:https://www.cnblogs.com/LeiYang5237/p/8549278.html
Copyright © 2011-2022 走看看