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

MongoDB :Bagaimana cara mengalikan bidang yang hanya muncul di $project?

Silakan gunakan kata kunci addFields setelah kami dapat menggunakan kunci dalam proyek .

 const LEAD_PRICE  = ....; // doesn't matter 
  Client.aggregate(
      [
        {
          $lookup: {
            from: "clientboughtleads",
            localField: "_id",
            foreignField: "Client",
            as: "ClientLeads"
          }
        },
   {
     $addFields: {
       TotalPurchasedLeads: {
              $size: "$ClientLeads"
          }
     }
   },
        {
          $project: {
            ClientId: "$_id",
            RegistrationDate: "$date",
            TotalPurchasedLeads:1,
            IncomeFromClient: {     // This one is always undefined
              $multiply: [LEAD_PRICE / 2, "$TotalPurchasedLeads"]
            }
          }
        }
      ]


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. fungsi $week dan hari pertama dalam seminggu dalam agregasi

  2. MongoDB Java Inserting Throws org.bson.codecs.configuration.CodecConfigurationException:Tidak dapat menemukan codec untuk kelas io.github.ilkgunel.mongodb.Pojo

  3. Meteor meneruskan id ke tautan

  4. String Koneksi Pengguna Kustom untuk Instans MongoDB dengan Otentikasi

  5. indeks teks diperlukan untuk kueri $teks