
mongoDB
文章平均质量分 84
lucky404
hello world
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux 安装MongoDB
mongodb 下载地址:https://www.mongodb.org/dl/linux/x86_64 下载完成之后一般安装下/usr/local路径下 在/usr/local创建monodb安装路径/usr mkdir -p /usr/local/mongo 创建数据文件保存路径 mkdir -p /usr/local/mongo/data 创建日志文...原创 2018-02-28 17:05:16 · 158 阅读 · 0 评论 -
mongoDB 常用命令
1 查看帮助文档 help 2 新建一个数据库(切换到某个数据库) use + 数据库名称 use myDB 3 查询当前正在使用哪个数据库 db 4 显示当前有哪些数据库(需要注意的是 当你刚创建了一个 数据库时该数据库为空,则 show dbs 看不到该数据库) show dbs 5 显示数据库有哪些表 show tables ...原创 2018-02-28 17:32:23 · 317 阅读 · 0 评论