$lt¶
On this page
Definition¶
-
$lt
¶ Syntax:
{ field: { $lt: value } }
$lt
selects the documents where the value of thefield
is less than (i.e.<
) the specifiedvalue
.For most data types, comparison operators only perform comparisons on fields where the BSON type matches the query value’s type. MongoDB supports limited cross-BSON comparison through Type Bracketing.
Examples¶
The following examples use the inventory
collection. Create the
collection:
Match Document Fields¶
Select all documents in the inventory
collection where quantity
is less than 20
:
Example output:
Perform an Update Based on Embedded Document Fields¶
The following example sets the price
field based on a $lt
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 less than
20.
To set the value of the price
field in only the first document
where carrier.fee
is less than 20, use
updateOne()
.