MongoDB
 sql >> Teknologi Basis Data >  >> NoSQL >> MongoDB

Cara memotong angka menjadi 3 desimal

Untuk pembulatan 3 desimal, Anda dapat menggunakan rumus ini.

$divide: [ {$trunc: { $multiply: [ "$$coordinate" , 1000 ] } }, 1000 ]

Misalnya, dengan data sampel Anda, dan menggunakan agregasi ini:

db.getCollection('Test2').aggregate([
    { $project : 
        { 
            "location.type" : "$location.type",
            "location.coordinates" :  
            { 
                $map: 
                {
                    input: "$location.coordinates",
                    as: "coordinate",
                    in: { $divide: [ {$trunc: { $multiply: [ "$$coordinate" , 1000 ] } }, 1000 ] }
              }
            }   
        } 
    }
])

Anda dapat memperoleh hasil yang diinginkan.

{
    "_id" : ObjectId("59f9a4c814167b414f6eb553"),
    "location" : {
        "type" : "Point",
        "coordinates" : [ 
            -74.005, 
            40.705
        ]
    }
}


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Kerangka Agregasi MongoDB - Ganti Nama Bidang Dinamis

  2. Hubungkan ke Host mongodb dari wadah buruh pelabuhan

  3. Proses / utas Spring MongoDB bocor

  4. Mengekspor modul database luwak

  5. menampilkan jumlah semua file yang diambil di driver mongodb-nodejs