Mongodb基础操作实践- -Mongodb Shell端

Posted tangyongathuse

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mongodb基础操作实践- -Mongodb Shell端相关的知识,希望对你有一定的参考价值。

一、连接

1.mongo mongodb://localhost:27000

2.

show databases(dbs)

use test

3.

db

show collections

二、插入

1.db.proccessedfile.insertone({fileName:"20170403/3.gz", processedDate:new ISODate(), dataNumber:10000, x:10})

2.db.mongodb.insertMany([    { item: "journal", qty: 25, tags: ["blank", "red"], size: { h: 14, w: 21, uom: "cm" } },    { item: "mat", qty: 85, tags: ["gray"], size: { h: 27.9, w: 35.5, uom: "cm" } },    { item: "mousepad", qty: 25, tags:["gel", "blue"], size: { h: 19, w: 22.85, uom: "cm" } } ])

三、查询

1.

db.proccessedfile.find()

db.proccessedfile.find().pretty()//pretty格式化,document或bson.document,类json标准格式输出,基于查询均可追加上

2.db.mongodb.find( { item: "mousepad" } )

3.db.mongodb.find( { qty: {$in: [25, 29]} } ).pretty()//=,后接数组数据的集合,类似or操作,$or后接数组集合的集合

4.

db.mongodb.find( {qty: {$lte: 85}} ).pretty()//>=

db.mongodb.find( {qty: {$lte: 85, $gte: 25 }} ).pretty()//>=, <=

db.mongodb.find( {item: "mousepad", qty: {$lte: 85, $gte: 25 }} ).pretty()//and操作

以上是关于Mongodb基础操作实践- -Mongodb Shell端的主要内容,如果未能解决你的问题,请参考以下文章

部署k8s ssl集群实践1:基础环境准备

Python实践-4切片操作去除字符串首尾的空格

gulp基础操作实践

MySQL事务基础知识总结与实践操作

小白视角大数据基础实践 MapReduce编程基础操作

Node.js 中流操作实践