MongoDB安装使用
社区版:Download MongoDB Community Server | MongoDB
开启服务,localhost:27017,数据写到--dbpath中
mongod --dbpath E:\MongoDB\Server\7.0\db
mongodb6.0以上版本要想使用shell交互,需要下载mongoshell:MongoDB Shell Download | MongoDB
E:\MongoDB\mongosh-2.1.1-win32-x64\bin\mongosh.exe
show dbs # 查看所有db
use mydatabase # 使用/创建db
show collections # 查看db中的集合
db.mycollection.insertOne({ key: value }) # 在mycollection集合中插入一个document
db.mycollection.insertMany([{ key1: value1 }, { key2: value2 }])
db.mycollection.find() # 查看mycollection集合中的document
或者使用Robo 3T可视化