MongoDB 入门笔记
环境
MacOS10.14.4
安装
运行
in the foreground
as a macOS service
检查mongodb是否在运行
You can also view the log file to see the current status of your mongod process:
相关路径
连接并使用
查看版本
查看所有数据库
查看当前数据库
切换数据库
查看所有集合
基本操作
1.Create 增
插入一个
插入多个
2.Read 查
查询单个
查询所有
利用操作符指定查询条件
AND
OR
AND OR
3.Update 改
update one
update many
replace one
嵌套查询例子
e作为查询条件查询
4.Delete 删
delete all
delete many
delete one
References
[1] Install MongoDB Community Edition on macOS: https://docs.mongodb.com/manual/tutorial/install-mongodb-on-os-x/
[2] insert-documents: https://docs.mongodb.com/manual/tutorial/insert-documents/
[3] query-documents: https://docs.mongodb.com/manual/tutorial/query-documents/
[4] update-documents: https://docs.mongodb.com/manual/tutorial/update-documents/
[5] remove-documents: https://docs.mongodb.com/manual/tutorial/remove-documents/
[6] MongoDB数据库命令行操作: https://blog.csdn.net/qq_33036599/article/details/83061446
[7] 题图: https://unsplash.com/
上一篇
欢迎关注我的微信公众号「编程随想曲」
版权声明: 本文为 InfoQ 作者【编程随想曲】的原创文章。
原文链接:【http://xie.infoq.cn/article/e28cb596c9bf73c66d632d724】。文章转载请联系作者。
评论