MongoDB学习(三)MongoDB shell命令行的使用

来源:未知 责任编辑:责任编辑 发表时间:2015-09-16 20:05 点击:

首先要启动MongoDB shell工具,即bin下的mongo.exe
 
常用shell命令如下:
 
1、查询本地所有数据库名称
 
> show dbs;
2、切换至指定数据库环境(若无指定的数据库,则创建新的库)
 
> use dbtest;
切换至dbtest库或创建名为dbtest的库
3、查询当前库下的所有聚集集合collection(相当于table)
  www.2cto.com  
> show collections;
4、创建聚集集合
 
> db.createCollection('employee');
创建了一个名为'employee'的聚集集合
5、插入数据
 
> db.employee.insert({'uname':'teddy','age':24,'salary':11000});
往'employee'聚集集合中插上一条数库,name为'teddy',age为'24',salary为'11000'
 
6、查询聚集集合中数据条数
 
> db.employee.count();
7、查询age为了23的数据
 
> db.employee.find({"age":23});
8、查询salary大于5000的数据
  www.2cto.com  
> db.employee.find({salary:{$gt:5000}});
9、查询age小于23,salary大于8000的数据
 
> db.employee.find({age:{$lt:24}},{salary:{$gt:8000}});
10、查询salary小于4000或salary大于20000的数据
 
> db.employee.find({$or: [{salary: {$lt:4000}}, {salary: {$gt:20000}}]});
11、查询指定列的数据
 
> db.employee.find({},{age:1,salary:1});
1表示显示此列的意思,也可以用true表示
12、查询uname中包含'e'的数据
 
> db.employee.find({uname:/e/});
13、查询以a打头的数据
 
> db.employee.find({uname:/^a/});
14、查询age列数据,并去掉重复数据
 
> db.employee.distinct('age');
15、查询前10条数据
 
> db.employee.find().limit(10);
16、查询1条以后的所有数据
 
> db.employee.find().skip(1);
17、查询第一条数据
 
> db.employee.findOne();
18、查询结果集的记录数(查询salary小于4000或大于10000的记录数)
 
db.employee.find({$or: [{salary: {$lt:4000}}, {salary: {$gt:10000}}]}).count();
19、按salary升序排序
 
> db.employee.find().sort({salary:1});
按照salary字段升序排序
 
20、降序  www.2cto.com  
 
> db.employee.find().sort({salary:-1});
按照salary字段降序排序
 
 21、根据uname修改age
 
> db.employee.update({uname:'jim'},{$set:{age:22}},false,true);
db.collection.update( criteria, objNew, upsert, multi )
 
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • Request.ServerVariables 参数大全
  • 查看sql修改痕迹(SQL Change Tracking on Table)
  • 写给MongoDB开发者的50条建议Tip1
  • Percolator与分布式事务思考(二)
  • App数据层设计及云存储使用指南
  • PostgreSQL启动过程中的那些事三:加载GUC参数
  • SQL Server、Oracle、db2所提供的简装版(Express)比较
  • PostgreSQL 安装问题
  • 【自主研发-贡献给SQL Server人员】索引诊断与优化软件使用说明
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1