WEB__backend--MongoDb

mongodb

database server--存储数据
databases--仓库,对一类数据的抽象处理(eg洗发水) DB
collections--对一类数据的抽象处理,更细(eg去屑洗发水)RA/Table
documents--
fields--

常用

brew services start [email protected]
mongo

show dbs :print all databases
use :switch to exist db, create new db
db: print current db
show collections
db.{collection}.insertOne()
db.{collection}.insertMany()
db.{collection}.find()
db.{collection}.findOne()满足条件第一条<=>db.students.find({age:{exists:1}}):age不为空 1/2/3/true
db.students.find({age:{set:{age:23}})
+2:
db.students.update({name:"bob"},{inc:{age:-5}})
取消某字段:
db.students.update({name:"bob"},{exsis:true}},{exists:true}})

你可能感兴趣的:(WEB__backend--MongoDb)