1. $gt: "greater than"의 약자로, "보다 큰"을 의미함.
-> 'price' 필드 값이 1000보다 큰 모든 문서를 선택.
ex. db.collection.find({price: {$gt: 1000}})
ex. db.collection.find({price: {$lt: 1000}})
ex. db.collection.find({price: {$gte: 1000}})
ex. db.collection.find({price: {$lte: 1000}})
이 외에도 $eq (equal), $ne (not equal) 등의 비교 연산자도 있음. 이들은 각각 "같음"과 "같지 않음"을 의미함.