-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupermercado.mongodb.js
184 lines (170 loc) · 4.14 KB
/
supermercado.mongodb.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/* global use, db */
// MongoDB Playground
// Use Ctrl+Space inside a snippet or a string literal to trigger completions.
const database = 'admin';
const collection = 'NEW_COLLECTION_NAME';
// The current database to use.
use(database);
// Create a new collection.
db.createCollection(collection);
// The prototype form to create a collection:
/* db.createCollection( <name>,
{
capped: <boolean>,
autoIndexId: <boolean>,
size: <number>,
max: <number>,
storageEngine: <document>,
validator: <document>,
validationLevel: <string>,
validationAction: <string>,
indexOptionDefaults: <document>,
viewOn: <string>,
pipeline: <pipeline>,
collation: <document>,
writeConcern: <document>,
timeseries: { // Added in MongoDB 5.0
timeField: <string>, // required for time series collections
metaField: <string>,
granularity: <string>,
bucketMaxSpanSeconds: <number>, // Added in MongoDB 6.3
bucketRoundingSeconds: <number>, // Added in MongoDB 6.3
},
expireAfterSeconds: <number>,
clusteredIndex: <document>, // Added in MongoDB 5.3
}
)*/
// More information on the `createCollection` command can be found at:
// https://www.mongodb.com/docs/manual/reference/method/db.createCollection/
// Crear colección de productos
db.createCollection("productos");
// Insertar datos en la colección de productos
db.productos.insertMany([
{
id: 1,
nombre: "Arroz",
cantidad: 100,
precio: 1200,
tipo: "Granos"
},
{
id: 2,
nombre: "Leche",
cantidad: 50,
precio: 3800,
tipo: "Lacteos"
},
{
id: 3,
nombre: "Papel Higienico",
cantidad: 200,
precio: 2500,
tipo: "Aseo"
},
{
id: 4,
nombre: "Atun",
cantidad: 80,
precio: 4200,
tipo: "Enlatados"
},
{
id: 5,
nombre: "Pierna de Cerdo",
cantidad: 20,
precio: 8500,
tipo: "Carnicos"
},
]);
// Crear colección de clientes
db.createCollection("clientes");
// Insertar datos en la colección de clientes
db.clientes.insertMany([
{
id: 1,
nombre: "Juan Velez",
telefono: "31066588749",
direccion: "Calle 32 # 65-78"
},
{
id: 2,
nombre: "María Arenas",
telefono: "3136587741",
direccion: "Avenida 10 - 45-78"
},
{
id: 3,
nombre: "Andres Gomez",
telefono: "3126547895",
direccion: "Calle 1 # 12-13"
},
{
id: 4,
nombre: "Pepito Perez",
telefono: "3116574892",
direccion: "Avenida 98a # 23-55"
}
]);
// Crear colección de pedidos
db.createCollection("pedidos");
// Insertar datos en la colección de pedidos
db.pedidos.insertMany([
{
cliente_id: 1,
producto_id: 1,
cantidad: 5,
precio_id: 1,
fecha_pedido: ISODate("2024-03-05"),
estado_pedido: "Entregado",
total: Number,
},
{
cliente_id: 2,
producto_id: 2,
cantidad: 3,
precio_id: 2,
fecha_pedido: ISODate("2024-03-06"),
estado_pedido: "En ruta",
total: Number,
},
]);
//consulta detallada de pedidos
db.pedidos.aggregate([
{
$lookup: {
from: "productos",
localField: "producto_id",
foreignField: "id",
as: "producto"
}
},
{
$unwind: "$producto"
},
{
$lookup: {
from: "clientes",
localField: "cliente_id",
foreignField: "id",
as: "cliente"
}
},
{
$unwind: "$cliente"
},
{
$project: {
_id: 0,
"Pedido ID": "$_id",
"Fecha de Pedido": "$fecha_pedido",
"Estado del Pedido": "$estado_pedido",
"Cliente": "$cliente.nombre",
"Teléfono del Cliente": "$cliente.telefono",
"Dirección del Cliente": "$cliente.direccion",
"Producto": "$producto.nombre",
"Cantidad": "$cantidad",
"Precio Unitario": "$producto.precio",
"Total": { $multiply: ["$cantidad", "$producto.precio"] }
}
}
]);