show dbs
use shopping 
show collections
db.Product.find().limit(2)
db.Product.find().limit(1)
db.Product.find().sort({key:1})
db.Product.find({},{"Productname":1,_id.0}).sort({"Productname":1})
db.Product.find({},{"Productname":1,"Price":1,_id:0}).sort({"Price":-1})
db.Product.find({},{_id:0}).limit(3).sort({"stockquantity":1})
db.Product.find({},{"Category":1,_id:0}).limit(3).sort({"Category":-1})
db.Product.find({},{"Category":1,_id:0}).limit(5).sort({"Category":-1})
db.product.find({"Price":{$eq:5000}})
db.product.find({"Stockquantity":{$gt:50}})





Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: