Mongoose查找具有字段的多个值

时间:2016-11-12 13:49:58

标签: mongodb mongoose

Select * from table_name where sport_type LIKE ('Cricket','Football');

我正在尝试使用sport_type

找到find Cricket和Football的文件
table.find({ sport_type : "Cricket" })

任何人都可以帮我这样做

1 个答案:

答案 0 :(得分:0)

尝试使用$or

table.find( { $or:[ {'sport_type':'Cricket'}, {'sport_type':'Football'} ]}, 
  function(err,docs){
    // do something
});