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

mongodb:come aggiornare l'elemento dell'array in base al numero di indice

Puoi accedere a uno specifico elemento dell'array in un update dal suo indice in base 0 usando la notazione punto:

// Set the x property of the third element of a to 1
db.test.update({_id: 'sdsdfsd'}, {$set: {'a.2.x': 1}})