Advertisement
AmbarG

mongoDB

Nov 12th, 2024
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.42 KB | None | 0 0
  1. use Ventas
  2. switched to db Ventas
  3. db.Empresa.insertOne({cuit:2744516180,})
  4. {
  5. acknowledged: true,
  6. insertedId: ObjectId('6733667f31765e9c769672c6')
  7. }
  8. show dbs
  9. Ventas 16.00 KiB
  10. admin 40.00 KiB
  11. config 108.00 KiB
  12. local 72.00 KiB
  13. db.Empresa.find().pretty()
  14. {
  15. _id: ObjectId('6733667f31765e9c769672c6'),
  16. cuit: 2744516180
  17. }
  18. db.Empresa.deleteMany({})
  19. {
  20. acknowledged: true,
  21. deletedCount: 1
  22. }
  23. db.Empresa.insertOne({"cuit": 2744516180, "nombre": "Empresa A", "direccion": "Gorriti 455", "email": "empresaA@gmail.com"} )
  24. {
  25. acknowledged: true,
  26. insertedId: ObjectId('673368f531765e9c769672c7')
  27. }
  28. db.Empresa.insertOne({"cuit": 27444561233, "nombre": "Empresa B", "direccion": "Forestal 777", "email": "empresaB@gmail.com"})
  29. {
  30. acknowledged: true,
  31. insertedId: ObjectId('6733698431765e9c769672c8')
  32. }
  33. db.Empresa.insertOne({"cuit": 78563451786, "nombre": "Empresa C", "direccion": "Tello 477", "email": "empresaC@gmail.com"})
  34. {
  35. acknowledged: true,
  36. insertedId: ObjectId('67336a7d31765e9c769672c9')
  37. }
  38. db.Empresa.insertOne({"cuit": 23486782546, "nombre": "Empresa D", "direccion": "Balcarce 455", "email": "empresaD@gmail.com"})
  39. {
  40. acknowledged: true,
  41. insertedId: ObjectId('67336ad331765e9c769672ca')
  42. }
  43. db.Empresa.insertOne({"cuit": 45908761235, "nombre":Emprsa E,"direccion": "Guison 566", "email": "empresaE@gmail.com"})
  44. SyntaxError: Unexpected token, expected "," (1:59)
  45.  
  46. > 1 | db.Empresa.insertOne({"cuit": 45908761235, "nombre":Emprsa E,"direccion": "Guison 566", "email": "empresaE@gmail.com"})
  47. | ^
  48. db.Empresa.insertOne({"cuit": 45908761235, "nombre":"Emprsa E","direccion": "Guison 566", "email": "empresaE@gmail.com"})
  49. {
  50. acknowledged: true,
  51. insertedId: ObjectId('67336b6531765e9c769672cb')
  52. }
  53. db.Empresa.find().pretty()
  54. {
  55. _id: ObjectId('673368f531765e9c769672c7'),
  56. cuit: 2744516180,
  57. nombre: 'Empresa A',
  58. direccion: 'Gorriti 455',
  59. email: 'empresaA@gmail.com'
  60. }
  61. {
  62. _id: ObjectId('6733698431765e9c769672c8'),
  63. cuit: 27444561233,
  64. nombre: 'Empresa B',
  65. direccion: 'Forestal 777',
  66. email: 'empresaB@gmail.com'
  67. }
  68. {
  69. _id: ObjectId('67336a7d31765e9c769672c9'),
  70. cuit: 78563451786,
  71. nombre: 'Empresa C',
  72. direccion: 'Tello 477',
  73. email: 'empresaC@gmail.com'
  74. }
  75. {
  76. _id: ObjectId('67336ad331765e9c769672ca'),
  77. cuit: 23486782546,
  78. nombre: 'Empresa D',
  79. direccion: 'Balcarce 455',
  80. email: 'empresaD@gmail.com'
  81. }
  82. {
  83. _id: ObjectId('67336b6531765e9c769672cb'),
  84. cuit: 45908761235,
  85. nombre: 'Emprsa E',
  86. direccion: 'Guison 566',
  87. email: 'empresaE@gmail.com'
  88. }
  89. db.Repuesto.insertOne({"codigo": 3456,"nombre":"Repuesto A", "descripcion": "Descripcion del repuesto A", "precio": 150})
  90. {
  91. acknowledged: true,
  92. insertedId: ObjectId('67336cc731765e9c769672cc')
  93. }
  94. db.Repuesto.insertOne({"codigo": 0222, "nombre": "Repuesto B", "descripcion": "Descripcion del respuesto B", "precio": 120})
  95. {
  96. acknowledged: true,
  97. insertedId: ObjectId('67336d0031765e9c769672cd')
  98. }
  99. db.Repuesto.insertOne({"codigo": 3444, "nombre": "Repuesto c", "descripcion": "Descripcion del respuesto C", "precio": 345.6})
  100. {
  101. acknowledged: true,
  102. insertedId: ObjectId('67336d2d31765e9c769672ce')
  103. }
  104. db.Repuesto.insertOne({"codigo": 3404, "nombre": "Repuesto D", "descripcion": "Descripcion del respuesto D", "precio": 455.6})
  105. {
  106. acknowledged: true,
  107. insertedId: ObjectId('67336d7031765e9c769672cf')
  108. }
  109. db.Repuesto.insertOne({"codigo": 5545, "nombre": "Repuesto E", "descripcion": "Descripcion del respuesto E", "precio": 1000.9})
  110. {
  111. acknowledged: true,
  112. insertedId: ObjectId('67336dae31765e9c769672d0')
  113. }
  114. db.Repuesto.find().pretty()
  115. {
  116. _id: ObjectId('67336cc731765e9c769672cc'),
  117. codigo: 3456,
  118. nombre: 'Repuesto A',
  119. descripcion: 'Descripcion del repuesto A',
  120. precio: 150
  121. }
  122. {
  123. _id: ObjectId('67336d0031765e9c769672cd'),
  124. codigo: 146,
  125. nombre: 'Repuesto B',
  126. descripcion: 'Descripcion del respuesto B',
  127. precio: 120
  128. }
  129. {
  130. _id: ObjectId('67336d2d31765e9c769672ce'),
  131. codigo: 3444,
  132. nombre: 'Repuesto c',
  133. descripcion: 'Descripcion del respuesto C',
  134. precio: 345.6
  135. }
  136. {
  137. _id: ObjectId('67336d7031765e9c769672cf'),
  138. codigo: 3404,
  139. nombre: 'Repuesto D',
  140. descripcion: 'Descripcion del respuesto D',
  141. precio: 455.6
  142. }
  143. {
  144. _id: ObjectId('67336dae31765e9c769672d0'),
  145. codigo: 5545,
  146. nombre: 'Repuesto E',
  147. descripcion: 'Descripcion del respuesto E',
  148. precio: 1000.9
  149. }
  150. Ventas
  151. Selection deleted
  152.  
  153.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement