日期:2014-05-16  浏览次数:20495 次

MongoDB学习笔记(四):Shell基础

安装后运行bin/mongo.exe(windows),打开dos操作界面?


1、查询本地所有数据库名称?
> show dbs;?

2、切换至指定数据库环境(若无指定的数据库,则创建新的库)?
> use dbtest;?
切换至dbtest库或创建名为dbtest的库?

3、查询当前库下的所有聚集集合collection(相当于table)?
> 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的数据?
> 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:/a/});?

13、查询以a打头的数据?
> db.employee.find({uname:/^a/});?

14、查询age列数据,并去掉重复数据?
> db.employee.distinct('age');?

15、查询前10条数据?
> db.employee.fin