Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の基準を満たすすべてのレコードを選択したい:
if "used1" not in record or record["used1"] != True
これはどうやって書くの?ありがとう。
$exists最初に使用するのは次のとおりです。
$exists
db.collection.find({ used1: { $exists: false } })
そして$ne2番目:
$ne
db.collection.find({ used1: { $ne: true } })
それらを組み合わせるには、次を使用します$or。
$or
db.collection.find({ $or: [ { used1: { $exists: false } }, { used1: { $ne: true } } ] })