mongod --dbpath D:\software\MongoDB\Server\data\db
mongod -dbpath "D:\software\MongoDB\Server\data\db" -logpath "D:\software\MongoDB\Server\data\log\mongo.log" -install -serviceName "MongoDB"
https://www.cnblogs.com/zhoulifeng/p/9429597.html
show dbs
show databases
use 数据库名
-不用创建数据库或集合,在写insert语句时自动创建
db
-显示当前所在得数据据库
show collections
-显示数据库所有的集合
数据库的CRUD
向数据中插入文档
db.<collection>.insert(doc)
db.stus.insert({name:"sunwukong",age:18,gender:"male"});
向stus集合中插入一个新的学生对象
db.<collection>.find()
db.stus.find()