《MongoDB入门教程》第16篇 文档更新之$min/$max操作符

Posted 不剪发的Tony老师

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《MongoDB入门教程》第16篇 文档更新之$min/$max操作符相关的知识,希望对你有一定的参考价值。

本文将会介绍如何在 update() 方法中使用 $min 和 $max 操作符更新指定字段的值。

$min 操作符

$min 是一个字段更新操作符,如果指定的数值小于(<)字段当前值,将字段的值修改为指定值。

$min 操作符的语法如下:

 $min: <field1>: <value1>, ... 

如果字段当前值大于等于指定的值,不会执行更新操作。

如果指定的字段不存在,$min 操作符将会创建字段并设置字段的值。

$min 示例

下文中的示例将会使用以下集合:

db.products.insertMany([
     "_id" : 1, "name" : "xPhone", "price" : 799, "releaseDate": ISODate("2011-05-14"), "spec" :  "ram" : 4, "screen" : 6.5, "cpu" : 2.66 ,"color":["white","black"],"storage":[64,128,256],
     "_id" : 2, "name" : "xTablet", "price" : 899, "releaseDate": ISODate("2011-09-01") , "spec" :  "ram" : 16, "screen" : 9.5, "cpu" : 3.66 ,"color":["white","black","purple"],"storage":[128,256,512],
     "_id" : 3, "name" : "SmartTablet", "price" : 899, "releaseDate": ISODate("2015-01-14"), "spec" :  "ram" : 12, "screen" : 9.7, "cpu" : 3.66 ,"color":["blue"],"storage":[16,64,128],
     "_id" : 4, "name" : "SmartPad", "price" : 699, "releaseDate": ISODate("2020-05-14"),"spec" :  "ram" : 8, "screen" : 9.7, "cpu" : 1.66 ,"color":["white","orange","gold","gray"],"storage":[128,256,1024],
     "_id" : 5, "name" : "SmartPhone", "price" : 599,"releaseDate": ISODate("2022-09-14"), "spec" :  "ram" : 4, "screen" : 5.7, "cpu" : 1.66 ,"color":["white","orange","gold","gray"],"storage":[128,256]
 ])

以下示例使用 $min 操作符更新文档(_id: 5)的 price 字段:

db.products.updateOne(
    _id: 5
, 
    $min: 
        price: 699
    
)

查询匹配了一个文档,但是没有执行更新操作:


  acknowledged: true,
  insertedId: null,
  matchedCount: 1,
  modifiedCount: 0,
  upsertedCount: 0

原因在于 699 大于字段的当前值(599)。

以下示例使用 $min 操作符将文档(_id: 5)的 price 字段更新为 499:

db.products.updateOne(
    _id: 5
, 
    $min: 
        price: 499
    
)

此时,查询更新了一个文档:


  acknowledged: true,
  insertedId: null,
  matchedCount: 1,
  modifiedCount: 1,
  upsertedCount: 0

验证文档更新后的内容:

db.products.find( _id: 5 ,  name: 1, price: 1 )

[  _id: 5, name: 'SmartPhone', price: 499  ]

$max 操作符

$max 是一个字段更新操作符,如果指定的数值大于(>)字段当前值,将字段的值修改为指定值。

$max 操作符的语法如下:

 $max: <field1>: <value1>, ... 

如果字段当前值小于等于指定的值,不会执行更新操作。

如果指定的字段不存在,$max 操作符将会创建字段并设置字段的值。

$max 示例

以下示例使用 $max 操作符更新文档(_id: 1)的 price 字段:

db.products.updateOne(
    _id: 1
, 
    $max: 
        price: 699
    
)

查询匹配了一个文档,但是没有执行更新操作:


  acknowledged: true,
  insertedId: null,
  matchedCount: 1,
  modifiedCount: 0,
  upsertedCount: 0

原因在于 699 小于字段的当前值(799)。

以下示例使用 $min 操作符将文档(_id: 1)的 price 字段更新为 899:

db.products.updateOne(
    _id: 1
, 
    $max: 
        price: 899
    
)

此时,查询更新了一个文档:


  acknowledged: true,
  insertedId: null,
  matchedCount: 1,
  modifiedCount: 1,
  upsertedCount: 0

验证文档更新后的内容:

db.products.find( _id: 1 ,  name: 1, price: 1 )

[  _id: 1, name: 'xPhone', price: 899  ]

以上是关于《MongoDB入门教程》第16篇 文档更新之$min/$max操作符的主要内容,如果未能解决你的问题,请参考以下文章

《MongoDB入门教程》第20篇 文档更新之UPSERT

《MongoDB入门教程》第20篇 文档更新之UPSERT

《MongoDB入门教程》第14篇 CRUD之更新文档

《MongoDB入门教程》第14篇 CRUD之更新文档

《MongoDB入门教程》第17篇 文档更新之$mul操作符

《MongoDB入门教程》第17篇 文档更新之$mul操作符