-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Expand file tree
/
Copy pathmongodb.sh
More file actions
225 lines (163 loc) Β· 3.51 KB
/
mongodb.sh
File metadata and controls
225 lines (163 loc) Β· 3.51 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
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# *****************************************************************************
# BASICS
# *****************************************************************************
# Connect MongoDB Shell
mongo # connects to mongodb://127.0.0.1:27017 by default
mongo --host <host> --port <port> -u <user> -p <pwd> # omit the password if you want a prompt
# Show All Databases
show dbs
# Show Current Database
db
# Create Or Switch Database
use <database_name>
# Drop Database
db.dropDatabase()
# Create Collection
db.createCollection('posts')
# Show Collections
show collections
# *****************************************************************************
# CRUD
# *****************************************************************************
# Insert Row
db.posts.insert({
title: 'Post One',
body: 'Body of post one',
category: 'News',
tags: ['news', 'events'],
user: {
name: 'John Doe',
status: 'author'
},
date: Date()
})
# Insert Multiple Rows
db.posts.insertMany([
{
title: 'Post Two',
body: 'Body of post two',
category: 'Technology',
date: Date()
},
{
title: 'Post Three',
body: 'Body of post three',
category: 'News',
date: Date()
},
{
title: 'Post Four',
body: 'Body of post three',
category: 'Entertainment',
date: Date()
}
])
# Get All Rows
db.posts.find()
# Get All Rows Formatted
db.posts.find().pretty()
# Find One Row
db.posts.findOne({ category: 'News' })
# Find Rows
db.posts.find({ category: 'News' })
# Find Specific Fields
db.posts.find({ title: 'Post One' }, {
title: 1,
author: 1
})
# Update Row
db.posts.update({ title: 'Post Two' },
{
title: 'Post Two',
body: 'New body for post 2',
date: Date()
},
{
upsert: true
})
# Update Specific Field
db.posts.update({ title: 'Post Two' },
{
$set: {
body: 'Body for post 2',
category: 'Technology'
}
})
# Delete Row
db.posts.remove({ title: 'Post Four' })
# *****************************************************************************
# OTHER FUNCTIONS
# *****************************************************************************
# Sort Rows
db.posts.find().sort({ title: 1 }).pretty() # asc
db.posts.find().sort({ title: -1 }).pretty() # desc
# Count Rows
db.posts.find().count()
db.posts.find({ category: 'news' }).count()
# Limit Rows
db.posts.find().limit(2).pretty()
# Chaining
db.posts.find().limit(2).sort({ title: 1 }).pretty()
# Foreach
db.posts.find().forEach(function(doc) {
print("Blog Post: " + doc.title)
})
# Increment Field (\$inc)
db.posts.update({ title: 'Post Two' },
{
$inc: {
likes: 5
}
})
# Rename Field
db.posts.update({ title: 'Post Two' },
{
$rename: {
likes: 'views'
}
})
# Sub-Documents
db.posts.update({ title: 'Post One' },
{
$set: {
comments: [
{
body: 'Comment One',
user: 'Mary Williams',
date: Date()
},
{
body: 'Comment Two',
user: 'Harry White',
date: Date()
}
]
}
})
# Find By Element in Array (\$elemMatch)
db.posts.find({
comments: {
$elemMatch: {
user: 'Mary Williams'
}
}
}
)
# Add Index
db.posts.createIndex({ title: 1 })
# Drop Index
db.posts.dropIndex("title_1")
# Hide/Unhide Indexes
db.posts.hideIndex("title_1")
db.posts.unhideIndex("title_1")
# Text Search
db.posts.find({
$text: {
$search: "\"Post O\""
}
})
# Greater & Less Than
db.posts.find({ views: { $gt: 2 } })
db.posts.find({ views: { $gte: 7 } })
db.posts.find({ views: { $lt: 7 } })
db.posts.find({ views: { $lte: 7 } })