-- 查询所有
db.集合名称.find();
-- 指定查询
db.集合名称.find({"item_name":"21SS国潮系列卫衣圆领套头长袖","style_no":"NS81E511"});
-- 查询前 5 条数据
db.集合名称.find().limit(5);
-- 删除符合条件的数据
db.集合名称.remove( { "modify_person":"test2"} )
原文:https://www.cnblogs.com/bubutianshu/p/14713229.html