MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Comment vérifier si un champ tableau contient une valeur unique ou un autre tableau dans MongoDB ?

Essayez ceci :

db.blogpost.find({ 'tags' : 'tag1'}); //1
db.blogpost.find({ 'tags' : { $all : [ 'tag1', 'tag2' ] }}); //2
db.blogpost.find({ 'tags' : { $in : [ 'tag3', 'tag4' ] }}); //3