use TIENDA
db.productos.insertMany([
{nombre:"Laptop HP",categoria:"Electrónica",precio:12000,stock:15,marca:"HP",disponible:true},
{nombre:"Mouse Logitech",categoria:"Accesorios",precio:300,stock:50,marca:"Logitech",disponible:true},
{nombre:"Teclado Redragon",categoria:"Accesorios",precio:800,stock:20,marca:"Redragon",disponible:true},
{nombre:"Monitor Samsung",categoria:"Electrónica",precio:4500,stock:10,marca:"Samsung",disponible:true},
{nombre:"USB Kingston",categoria:"Almacenamiento",precio:150,stock:100,marca:"Kingston",disponible:true}
])
db.productos.find()
db.productos.find({$and:[{precio:{$gt:500}},{stock:{$gt:10}}]})
db.productos.find({categoria:"Electrónica"})
db.productos.find({$or:[{marca:"HP"},{marca:"Samsung"}]})
db.productos.find({precio:{$gt:1000}})
db.productos.find({$and:[{precio:{$gte:200}},{precio:{$lte:5000}}]})
db.productos.find({stock:{$lt:20}})
db.productos.find({$or:[{categoria:"Electrónica"},{categoria:"Accesorios"}]})
db.productos.find({}, {nombre:1,precio:1,_id:0})
db.productos.updateOne({nombre:"USB Kingston"},{$set:{precio:200}})
db.productos.find()._addSpecial("$orderby",{precio:1})
To embed this project on your website, copy the following code and paste it into your website's HTML: