We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a3dc17 commit ee5131fCopy full SHA for ee5131f
_posts/2015-1-1-MongoDB-Notes.md
@@ -6,7 +6,8 @@ category: nosql
6
tags: [mongodb, maizi]
7
---
8
9
-MongoDB更新非常快,再好的书或者技术网站都有可能跟不上形势,建议直接看官网。但这里把常用的整理了一下,大家求快可以直接看本网页。
+本笔记适用于我在Maizi许愿开设的课程MongoDB最佳实践。
10
+MongoDB更新非常快,再好的书或者技术网站都有可能跟不上形势,建议直接看官网。但这里我把课程里的整理了一下(不完全),方便大家复制粘贴。
11
12
1. 安装命令
13
{% highlight bash %}
@@ -69,7 +70,7 @@ db.students.find({school:{$exists:false}})
69
70
基于正则表达式的逻辑查询
71
db.students.find({name: /^小/})
72
db.students.find({name: /.*四/})
-{% endhighlight %}
73
+
74
```
75
76
3. Update命令
0 commit comments