In MongoDB, is it possible to update the value of a field using the value from another field? The equivalent SQL would be something like:

UPDATE Person SET Name = FirstName + ' ' + LastName

And the MongoDB pseudo-code would be:

db.person.update( {}, { $set : { name : firstName + ' ' + lastName } );
link|improve this question

1  
Good question. Maybe you need to wait for / vote for jira.mongodb.org/browse/SERVER-458 – Thilo Oct 20 '10 at 6:04
1  
+1 to the question - the only way I can think of it is to pull the object locally and use that to update the field, or have an obscenely nested update call that I'm not sure mongo even supports. – nearlymonolith Oct 20 '10 at 6:50
feedback

1 Answer

up vote 4 down vote accepted

You cannot refer to the document itself in an update (yet). You'll need to iterate through the documents and update each document using a function. See this answer for an example.

link|improve this answer
Damn, thought it might come to that. Thanks. – Chris Fulstow Oct 20 '10 at 23:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.