nuggetin

afdvzcz

Jan 28th, 2022 (edited)
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. db.BillingProcess.insertOne({"id":1,"customer": "Rosalie", "item":"iPhone-X", "quantity":2, "price":90000,"cash":90000})
  2.  
  3. db.BillingProcess.find().pretty()
  4.  
  5. db.createCollection("SalesRecords")
  6.  
  7. db.SalesRecords.insertOne({"id":1, "customer":"Rosalie", "item": "iPhone-X", "quantity": 2, "date": "July 21, 2021"})
  8.  
  9. db.SalesRecords.find().pretty()
  10.  
  11. db.createCollection("Inventory")
  12.  
  13. db.Inventory.insertOne({"id":1, "item": "iPhone-X","price":45000, "quantity":49})
  14.  
  15. db.Inventory.find().pretty()
Add Comment
Please, Sign In to add comment