1. View 이해하기
아직 View 내용에 대해 자세히 이해가되지않음...
MongoDB의 View는 DB내의 컬렉션의 문서를 처리하여 집계 결과를 손쉽게 보기 위한 기능
db.createView( "firstYears", "students", [ { $match: { year: 1 } } ] )
db.firstYears.find()
db.firstYears.find({scores:{$gt:3.2}})