面试题答案
一键面试db.collection.updateMany(
{},
{
$pull: {
comments: {
content: { $regex: 'bad', $options: 'i' },
rating: { $lt: 3 }
}
}
}
);
db.collection.updateMany(
{},
{
$pull: {
comments: {
content: { $regex: 'bad', $options: 'i' },
rating: { $lt: 3 }
}
}
}
);