BackEnd/MongoDB
-
MongoDB 관련 tool , WebsiteBackEnd/MongoDB 2021. 11. 12. 20:37
Compass: GUI mongoDB Editor Atlas : hosting service mongoose quries: https://mongoosejs.com/docs/queries.html Mongoose v6.0.12: Queries Mongoose models provide several static helper functions for CRUD operations. Each of these functions returns a mongoose Query object. A mongoose query can be executed in one of two ways. First, if you pass in a callback function, Mongoose will execute the mongoo..
-
MongoDB Basics (in terminal)BackEnd/MongoDB 2021. 11. 12. 20:31
설치과정은 버전이 바뀔 때마다 업데이트되고 Mac, Windows 에 따라 다르므로 공식 문서 또는 Youtube, Stack overflow 참고 바람.. mongo start database use change working database. If it doesn't exist, make new one show dbs show all the databases. show collections In the current working database, show all the collections. db.,insertOne({}) db..insertMany([{}, {}] db.tours.insertMany( [ {name: "The Sea Explorer", price: 497, rating: 4.8},..