1. 학습
  2. /
  3. 강의
  4. /
  5. Introduction to MongoDB in Python

Connected

연습 문제

The $in operator

With the $in operator, you can find documents with fields that have one of the specified values. The $in operator works both for fields that have single values, as well as arrays, like the genre field.

The first document in the collection has been printed for you to refresh your memory on the fields in the movies collection.

지침

100 XP
  • Find the first movie that has a release year of 2010 or 2011 and store the result as tens.
  • Find the first movie that has a genre of "action" or "comedy" and store the result as bang.