공식 문서
Update Operators - MongoDB Manual
명령어
MongoDB 명령어 (database, collection, document, query, cursor, index)
Schema design
Example - board query
[mongoDB] mongoose 게시판 만들기 - query
MongoDB는 Document-Oriented(문서 지향적) NoSQL 데이터베이스이다. 오픈 소스이며 엔진은 C++로 작성되었다.
NoSQL이란 Not Only SQL의 약자로서 기존의 RDBMS(관계형 데이터베이스)의 한계를 극복하기 위한 새로운 형태의 데이터베이스이다.
Document
Document는 RDMS의 record와 유사한 개념으로 JSON objects 형태의 key-value의 쌍으로 이루어진 데이터 구조로 구성된다.
value에는 다른 document, array, document array가 포함될 수 있다.
MongoDB Document