{ name: 'The Perks of Being a Wallflower' genres: ['Drama', 'Romance'] rating: 8 }, { name: 'The Edge of Seventeen' genres: ['Drama', 'Comedy'] rating: 7.3 }, { name: 'Little Women', genres: ['Drama', 'Romance'] rating: 7.8 }
Comedy 或 Romance . 我试过这个:
Comedy
Romance
db.shows.find( {}, { genres: { $elemMatch: { $or: [{ $eq: 'Drama' }, {$eq: 'Comedy'}] } } } );
$in
演示- https://mongoplayground.net/p/MAuWUeP9GIE
db.collection.find({ genres: { $elemMatch: { "$in": [ "Drama", "Comedy" ] } } })
演示- https://mongoplayground.net/p/JJJkoHuz_DZ
db.collection.find({}, { genres: { $elemMatch: { "$in": [ "Drama", "Comedy" ] } } })