博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mongodb基础
阅读量:6408 次
发布时间:2019-06-23

本文共 955 字,大约阅读时间需要 3 分钟。

hot3.png

启动mongodb(默认会连到test)

cangxian@cangxian-CN17S:~$ mongoMongoDB shell version: 2.4.9connecting to: test

查看所有的库

> show dbs;db	(empty)ldblog	0.203125GBlocal	0.078125GBtest	0.203125GB

查看当前库

> db;test

调用库(如果不存在则会创建)

> use newTestDB;switched to db newTestDB

创建集合(同sql表)

> db.createCollection("testCollection");{ "ok" : 1 }

查看所有的集合

> show tables;system.indexestestCollection

向集合中插入测试数据(同样如果这个集合不存在会创建新的集合在插入数据)

> db.testCollection.insert({"name" : "testCollection"});

查询集合

> db.testCollection.find();{ "_id" : ObjectId("5a2d3b8e01418fe4d753f463"), "name" : "testCollection" }

删除集合

> db.createCollection("testDeleteCollection");{ "ok" : 1 }> db.testDeleteCollection.drop();true

删除表

> use testDeleteDB;switched to db testDeleteDB> db.dropDatabase();{ "dropped" : "testDeleteDB", "ok" : 1 }> show tables;> show dbs;db	(empty)ldblog	0.203125GBlocal	0.078125GBnewTestDB	0.203125GBtest	0.203125GBtestDeleteDB	(empty)

 

转载于:https://my.oschina.net/liangguoqiang/blog/1587606

你可能感兴趣的文章
【翻译】我钟爱的HTML5和CSS3在线工具
查看>>
Java多线程学习(吐血超详细总结)
查看>>
css3 变形
查看>>
Win7 64bit 安装Mysql5 出错 无法启动服务。
查看>>
嵌入式 H264参数语法文档: SPS、PPS、IDR以及NALU编码规律
查看>>
初识Opserver,StackExchange的监控解决方案
查看>>
给大家讲解一下JavaScript与后台Java天衣无缝相结合
查看>>
探索HTML5之本地文件系统API - File System API
查看>>
javascript有用代码块(1)
查看>>
libevent 笔记
查看>>
PHP实现人人OAuth登录和API调用
查看>>
redis源码笔记 - initServer
查看>>
FindBugs工具常见问题
查看>>
ECSHOP报错误Deprecated: preg_replace(): The /e modifier is depr
查看>>
【iOS】iOS之Button segue弹出popOver消除(dismiss)问题
查看>>
java多线程系列5-死锁与线程间通信
查看>>
数据库分库分表
查看>>
Modelsim编译Xilinx器件库的另一种方法
查看>>
腾讯Hermes设计概要——数据分析用的是列存储,词典文件前缀压缩,倒排文件递增id、变长压缩、依然是跳表-本质是lucene啊...
查看>>
打造 Vue.js 可复用组件
查看>>