Advertisement
Andrew_Manu

consultas

Sep 27th, 2019
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. db.inventory.updateOne(
  2.    { item: "mousepad" },
  3.    { $set: {item: "hola"} }
  4. )
  5.  
  6. db.inventory.updateOne(
  7.     { item: "paper" },
  8.     { $inc: { qty: 1} }
  9. )
  10.  
  11.  
  12. db.inventory.updateOne(
  13.     {item: "postcard"},
  14.     {$unset: { qty: "", status: ""} }
  15. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement