MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Mongodb aggiorna molti

  1. Questa è la tipica relazione uno-a-molti. Quindi nel caso dell'Utente puoi avere il seguente schema:

//User
{
  //_id: ObjectId - this one is unique and inserted to every document by default  
  profile: String,
    ...
}
  
//Activity
{
  description: String,
  ...,

  userId: String, // referecing the user _id, e.g. "56a5eccb2258799919dc2c40"
}
  
  1. Se desideri aggiornare molti documenti per l'attività:

db.activities.update({ userId: '56a5eccb2258799919dc2c40' }, { 
    $set: {
      description: 'new description'
    } 
  },
  {
    multi: true //means update all matching docs
  });