Advertisement
Guest User

Untitled

a guest
Jun 26th, 2013
420
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. history:Mongo > db.test2.update({$and : [{"_id.coid" : "testcoid"}, {"communications.sid" : "testsid"}]},{ $push : {"communications.$.clicks" : {$each : ["www.google.com" , "www.facebook.com"]}}})
  2. history:Mongo > db.test2.findOne()
  3. {
  4.     "_id" : {
  5.         "coid" : "testcoid",
  6.         "cid" : "testcid"
  7.     },
  8.     "communications" : [
  9.         {
  10.             "campid" : "testcampid",
  11.             "clicks" : [
  12.                 "www.google.com",
  13.                 "www.facebook.com"
  14.             ],
  15.             "sid" : "testsid"
  16.         }
  17.     ]
  18. }
  19.  
  20. history:Mongo > db.version()
  21. 2.4.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement