Yans�tma
db.products.find( {}, { "productName":1 } )
db.products.find( {}, { "productName":1,"_id":0 } )
Yapraklama
db.products.find().limit(20)
db.products.find().skip(60)
db.products.find().skip(60).limit(20)
S�ralama
db.products.find().sort({"salesPrice":1})
db.products.find().sort({"salesPrice":-1})
Dizinleme
db.products.find().sort({"salesPrice":1})
db.products.find().sort({"salesPrice":-1})
Dosyayı İndir