• MongoDB 常用shell命令汇总


    //指定用户名和密码连接到指定的MongoDB数据库

    mongo 192.168.1.200:27017/admin -u user -p password

    use youDbName

    1.MongoDB 查询所有索引的命令:

    2.MongoDB 创建索引的命令:

    Unique Index:

    注:

      MongoDB无法创建指定的索引字段唯一索引(S)如果集合已经包含了将违反唯一性约束的数据指标。

      MongoDB cannot create a unique index on the specified index field(s) if the collection already contains data that would violate the unique constraint for the index.

           https://docs.mongodb.com/v3.0/tutorial/create-a-unique-index/

    解决方法:

      1.把集合数据导出(mongoexport)至csv文件备份。

      2.清空集合数据。

      3.创建 Unique Index

      4.将 步骤1 备份的csv文件导入(mongoimport)集合。会自动过滤掉重复的数据。

    效果:

      

    3.MongoDB 模糊匹配查询:

    4.MongoDB 查询结果按指定字段排序:

    5.MongoDB update功能:

      1.新增字段

      

      2.更新字段值($set

       

      db.StrategyInfo.update({},{$set:{“test”:”股票池”}},false,true);

      其中update()3个参数,表示不存在的记录,是否插入,默认false,不插入。第4个参数,默认false只更新找到的第一条记录;true表示全部更新。

      3.删除某一列($unset

        

      

      4.重命名列名($rename

      

     6.更改某一列的字段类型

      1.查询某一列的字段类型($type)

      

      

      2.更改(forEach)

      

      db.calcgsdataflash_once.find().forEach(function(x){x.f2=String(x.f2);db.calcgsdataflash_once.save(x)})

      

      

    7.修改用户密码:

      db.changeUserPassword("root","123456")

      

    8.修改某一列的值为另一列的值

    db.student.find().forEach(
     function(item){
       db.student.update({"id":item._id},{"$set":{"newColumn":item.oldColumn}},true)
     }
    )
    

      

  • 相关阅读:
    项目纪实一
    Quartz.net一个简要示例
    ASP.NET MVC4 WebAPI若干要点
    利用委托实现父控件与子控件之间消息传递
    js获取屏幕信息
    jsion大括号和中括号,及调用
    jquery解析jsion
    hibernate初步
    java web笔记
    mysql存储过程
  • 原文地址:https://www.cnblogs.com/SZxiaochun/p/6283151.html
Copyright © 2020-2023  润新知