-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemporal.js
More file actions
84 lines (76 loc) · 1.2 KB
/
Copy pathtemporal.js
File metadata and controls
84 lines (76 loc) · 1.2 KB
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
db.usuarios.insertMany(
[
{
nombre: 'Alejandro',
edad: 24
},
{
nombre: 'Adrian',
edad: 23
},
{
nombre: 'Araceli',
edad: 26
},
{
nombre: 'Andrea',
edad: 29
},
{
nombre: 'Daniel',
edad: 22
},
{
nombre: 'Dardo',
edad: 27
},
{
nombre: 'Ezequiel',
edad: 28
},
{
nombre: 'Gabriel',
edad: 29
},
{
nombre: 'Joaquin',
edad: 32
},
{
nombre: 'Jorge',
edad: 34
},
]
)
/* ----------------------------------------- */
db.usuarios.find(
{
$and: [
{ nombre: 'Adrian' },
{ edad: 20 }
]
}
)
db.usuarios.find(
{
$or: [
{ nombre: 'Adrian' },
{ edad: 27 }
]
}
)
db.usuarios.find(
{
edad: { $gt: 29 }
}
)
db.usuarios.find(
{
edad: { $gte: 29 }
}
)
db.usuarios.find(
{
edad: { $lt: 29 }
}
)