기존 RDBMS 와 비교하면,
컬렉션 - 테이블
다큐먼트 - 데이터 row 이다.
test 라는 dbms 에 users 컬렉션 생성하고
// users 에 다큐먼트 생성시
db.users.insert({"id": "test", "age": "test", "email": "", "ipfsValue": "", "gender": "", "account": ""})
// 컬랙션의 다큐먼트 리스트 조회
db.users.find()
ex)
{ "_id" : ObjectId("56c08f3a4d6b67aafdeb88a3"), "name" : "MongoDB Guide", "author" : "Velopert" }
{ "_id" : ObjectId("56c08f474d6b67aafdeb88a4"), "name" : "NodeJS Guide", "author" : "Velopert" }
{ "_id" : ObjectId("56c0903d4d6b67aafdeb88a5"), "name" : "Book1", "author" : "Velopert" }
{ "_id" : ObjectId("56c0903d4d6b67aafdeb88a6"), "name" : "Book2", "author" : "Velopert" }
참고글 : https://velopert.com/436
'데이터베이스 > MongoDB' 카테고리의 다른 글
Atlas 사용 방법 (0) | 2019.04.02 |
---|---|
mongoose 연동 (0) | 2019.03.19 |