How do I concatenate values from two string fields and put it into a third one?
I\'ve tried this:
db.collection.update( { \"_id\": { $exists: true
**
in my case this $concat worked for me ...
$concat
db.collection.update( { "_id" : {"$exists":true} }, [ { "$set" : { "column_2" : { "$concat" : ["$column_4","$column_3"] } } } ]