Open Alice52 opened 1 year ago
show dbs;
use tutorial;
show collections;
db.createCollection("products");
db.products.insertMany([ { title: 'A', category_id: ObjectId('574d92332a2b10d7618b4575'), price: 30.23, rating:5 }, ]);
db.getCollection("collection").drop();
db.products.find();
db.products.createIndex({price:1}) db.products.getIndexes();
db.products.find({category_id:ObjectId('574d92332a2b10d7618b4575')}).sort({price:-1}).explain("allPlansExecution");
version
index
ha
rerference