美文网首页
Mongo 数据库 简单使用

Mongo 数据库 简单使用

作者: 呆木的小蝎 | 来源:发表于2018-11-01 17:11 被阅读0次

要管理数据库,必须先开机,开机使用mongod --dbpath D:\mongodb\bin

管理数据库:mongo  (一定要在新的cmd中输入)

清屏:cls

查看所有数据库列表: show dbs

使用数据库、创建数据库: use itcast

如果真的想把这个数据库创建成功,那么必须插入一个数据。

数据库中不能直接插入数据,只能往集合(collections)中插入数据。不需要创建集合,只需要写点语法:

 db.student.insert({“name”:”xiaoming”});

db.student  系统发现student是一个陌生的集合名字,所以就自动创建了集合。

删除数据库,删除当前所在的数据库

 db.dropDatabase();

插入数据:insert()

插入数据,随着数据的插入,数据库创建成功了,集合也创建成功了。

db.student.insert({"name":"xiaoming"});

我们不可能一条一条的insert。所以,我们希望用sublime在外部写好数据库的形式,然后导入数据库:

mongoimport --db test --collection restaurants --drop --file primer-dataset.json

-db test  想往哪个数据库里面导入

--collection restaurants  想往哪个集合中导入

--drop 把集合清空

--file primer-dataset.json  哪个文件

这样,我们就能用sublime创建一个json文件,然后用mongoimport命令导入,这样学习数据库非常方便。

查找数据find()

查找数据,用find。find中没有参数,那么将列出这个集合的所有文档:

 db.restaurants.find()

精确匹配:

db.student.find({"score.shuxue":70});

多个条件:

db.student.find({"score.shuxue":70 , "age":12})

大于条件:

1 db.student.find({"score.yuwen":{$gt:50}});

或者。寻找所有年龄是9岁,或者11岁的学生

db.student.find({$or:[{"age":9},{"age":11}]});

查找完毕之后,打点调用sort,表示升降排序。

db.restaurants.find().sort( { "borough": 1, "address.zipcode": 1 } )

修改数据:update()

修改里面还有查询条件。你要该谁,要告诉mongo。

查找名字叫做小明的,把年龄更改为16岁:

db.student.update({"name":"小明"},{$set:{"age":16}});

查找数学成绩是70,把年龄更改为33岁:

 db.student.update({"score.shuxue":70},{$set:{"age":33}});

更改所有匹配项目:"

By default, the update() method updates a single document. To update multiple documents, use the multi option in the update() method.

db.student.update({"sex":"男"},{$set:{"age":33}},{multi: true});

完整替换,不出现$set关键字了:

db.student.update({"name":"小明"},{"name":"大明","age":16});

删除数据:remove()

db.restaurants.remove( { "borough": "Manhattan" } )

db.restaurants.remove( { "borough": "Queens" }, { justOne: true } )

相关文章

  • Mongo 数据库 简单使用

    要管理数据库,必须先开机,开机使用mongod --dbpath D:\mongodb\bin 管理数据库:mon...

  • MongoDB的使用

    mongoDB 命令 在Linux下使用mongo进入MongoDB命令行 mongo 创建和使用数据库 > us...

  • 2021-04-20

    mongo 文档型数据库 是nosql数据库的一种 版本 最新版 4.4 mongo 使用场景 high perf...

  • MongoDB导入文件夹(内含json和bson文件)

    使用mongo命令将数据库删除: mongo命令: 导入(指定文件夹)数据: linux命令: windows命令:

  • mongo简单使用

    mongoDB简介 简介 mongoDB文档数据库,存储的是文档(Bson->json的二进制化)。 特点:其内部...

  • mongo常用命令

    mongo #连接数据库 show databases; #显示库名 use 数据库; #使用相关数据库 sho...

  • mongodb的test数据库为什么不显示

    使用mongo进入mongo shell后,会发现默认进入的test数据库。mongodb有个操作是show db...

  • mongodb 使用笔记

    mongodb 使用 mongo常用命令 查看命令提示 切换/创建数据库 查询所有数据库 删除当前使用数据库 导入...

  • springboot使用MongoDB数据库

    背景 项目中开始使用mongo数据库,需要快速连接使用mongo,当前操作只是读取,根据id读取,所以需要快速配置...

  • mongodb初体验

    在安装之前,我们首先了解一下mongo的常用功能 mongo 使用数据库 mongod 开机 mongoimpor...

网友评论

      本文标题:Mongo 数据库 简单使用

      本文链接:https://www.haomeiwen.com/subject/mcbxxqtx.html