Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- use Ventas
- switched to db Ventas
- db.Empresa.insertOne({cuit:2744516180,})
- {
- acknowledged: true,
- insertedId: ObjectId('6733667f31765e9c769672c6')
- }
- show dbs
- Ventas 16.00 KiB
- admin 40.00 KiB
- config 108.00 KiB
- local 72.00 KiB
- db.Empresa.find().pretty()
- {
- _id: ObjectId('6733667f31765e9c769672c6'),
- cuit: 2744516180
- }
- db.Empresa.deleteMany({})
- {
- acknowledged: true,
- deletedCount: 1
- }
- db.Empresa.insertOne({"cuit": 2744516180, "nombre": "Empresa A", "direccion": "Gorriti 455", "email": "empresaA@gmail.com"} )
- {
- acknowledged: true,
- insertedId: ObjectId('673368f531765e9c769672c7')
- }
- db.Empresa.insertOne({"cuit": 27444561233, "nombre": "Empresa B", "direccion": "Forestal 777", "email": "empresaB@gmail.com"})
- {
- acknowledged: true,
- insertedId: ObjectId('6733698431765e9c769672c8')
- }
- db.Empresa.insertOne({"cuit": 78563451786, "nombre": "Empresa C", "direccion": "Tello 477", "email": "empresaC@gmail.com"})
- {
- acknowledged: true,
- insertedId: ObjectId('67336a7d31765e9c769672c9')
- }
- db.Empresa.insertOne({"cuit": 23486782546, "nombre": "Empresa D", "direccion": "Balcarce 455", "email": "empresaD@gmail.com"})
- {
- acknowledged: true,
- insertedId: ObjectId('67336ad331765e9c769672ca')
- }
- db.Empresa.insertOne({"cuit": 45908761235, "nombre":Emprsa E,"direccion": "Guison 566", "email": "empresaE@gmail.com"})
- SyntaxError: Unexpected token, expected "," (1:59)
- > 1 | db.Empresa.insertOne({"cuit": 45908761235, "nombre":Emprsa E,"direccion": "Guison 566", "email": "empresaE@gmail.com"})
- | ^
- db.Empresa.insertOne({"cuit": 45908761235, "nombre":"Emprsa E","direccion": "Guison 566", "email": "empresaE@gmail.com"})
- {
- acknowledged: true,
- insertedId: ObjectId('67336b6531765e9c769672cb')
- }
- db.Empresa.find().pretty()
- {
- _id: ObjectId('673368f531765e9c769672c7'),
- cuit: 2744516180,
- nombre: 'Empresa A',
- direccion: 'Gorriti 455',
- email: 'empresaA@gmail.com'
- }
- {
- _id: ObjectId('6733698431765e9c769672c8'),
- cuit: 27444561233,
- nombre: 'Empresa B',
- direccion: 'Forestal 777',
- email: 'empresaB@gmail.com'
- }
- {
- _id: ObjectId('67336a7d31765e9c769672c9'),
- cuit: 78563451786,
- nombre: 'Empresa C',
- direccion: 'Tello 477',
- email: 'empresaC@gmail.com'
- }
- {
- _id: ObjectId('67336ad331765e9c769672ca'),
- cuit: 23486782546,
- nombre: 'Empresa D',
- direccion: 'Balcarce 455',
- email: 'empresaD@gmail.com'
- }
- {
- _id: ObjectId('67336b6531765e9c769672cb'),
- cuit: 45908761235,
- nombre: 'Emprsa E',
- direccion: 'Guison 566',
- email: 'empresaE@gmail.com'
- }
- db.Repuesto.insertOne({"codigo": 3456,"nombre":"Repuesto A", "descripcion": "Descripcion del repuesto A", "precio": 150})
- {
- acknowledged: true,
- insertedId: ObjectId('67336cc731765e9c769672cc')
- }
- db.Repuesto.insertOne({"codigo": 0222, "nombre": "Repuesto B", "descripcion": "Descripcion del respuesto B", "precio": 120})
- {
- acknowledged: true,
- insertedId: ObjectId('67336d0031765e9c769672cd')
- }
- db.Repuesto.insertOne({"codigo": 3444, "nombre": "Repuesto c", "descripcion": "Descripcion del respuesto C", "precio": 345.6})
- {
- acknowledged: true,
- insertedId: ObjectId('67336d2d31765e9c769672ce')
- }
- db.Repuesto.insertOne({"codigo": 3404, "nombre": "Repuesto D", "descripcion": "Descripcion del respuesto D", "precio": 455.6})
- {
- acknowledged: true,
- insertedId: ObjectId('67336d7031765e9c769672cf')
- }
- db.Repuesto.insertOne({"codigo": 5545, "nombre": "Repuesto E", "descripcion": "Descripcion del respuesto E", "precio": 1000.9})
- {
- acknowledged: true,
- insertedId: ObjectId('67336dae31765e9c769672d0')
- }
- db.Repuesto.find().pretty()
- {
- _id: ObjectId('67336cc731765e9c769672cc'),
- codigo: 3456,
- nombre: 'Repuesto A',
- descripcion: 'Descripcion del repuesto A',
- precio: 150
- }
- {
- _id: ObjectId('67336d0031765e9c769672cd'),
- codigo: 146,
- nombre: 'Repuesto B',
- descripcion: 'Descripcion del respuesto B',
- precio: 120
- }
- {
- _id: ObjectId('67336d2d31765e9c769672ce'),
- codigo: 3444,
- nombre: 'Repuesto c',
- descripcion: 'Descripcion del respuesto C',
- precio: 345.6
- }
- {
- _id: ObjectId('67336d7031765e9c769672cf'),
- codigo: 3404,
- nombre: 'Repuesto D',
- descripcion: 'Descripcion del respuesto D',
- precio: 455.6
- }
- {
- _id: ObjectId('67336dae31765e9c769672d0'),
- codigo: 5545,
- nombre: 'Repuesto E',
- descripcion: 'Descripcion del respuesto E',
- precio: 1000.9
- }
- Ventas
- Selection deleted
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement