$ne¶
On this page
Definition¶
-
$ne¶ Syntax:
{ field: { $ne: value } }$neselects the documents where the value of thefieldis not equal to the specifiedvalue. This includes documents that do not contain thefield.For comparison of different BSON type values, see the specified BSON comparison order.
Examples¶
The following examples use the inventory collection. Create the
collection:
Match Document Fields¶
Select all documents in the inventory collection where quantity
is not equal to 20:
The query will also select documents that do not have the quantity
field.
Example output:
Perform an Update Based on Embedded Document Fields¶
The following example sets the price field based on a $ne
comparison against a field in an embedded document.
Example output:
This updateMany() operation searches for an
embedded document, carrier, with a subfield named fee. It sets
{ price: 9.99 } in each document where fee has a value that
does not equal 1 or where the fee subfield does not exist.
The inequality operator $ne is not very selective since
it often matches a large portion of the index. As a result, in many
cases, a $ne query with an index may perform no better
than a $ne query that must scan all documents in a
collection. See also Query Selectivity.