remove()函数原型
db.collection.remove( <query>, <justOne> )
例子
// 删除所有数据
db.test.remove() |
// 删除所有数据
db.test.remove()
// 删除_id大于10的所有数据
db.test.remove(
{_id[......]<p class="read-more"><a href="https://www.fengdingbo.com/mongodb-delete.html">Read more</a></p> |
// 删除_id大于10的所有数据
db.test.remove(
{_id[......]<p class="read-more"><a href="https://www.fengdingbo.com/mongodb-delete.html">Read more</a></p>
update()函数原型
db.collection.update( <query>, <update>, <options> )
例子
// 如果参数包含字段不存在,update()方法将添加新的字段。
db.test.update(
{_id:[......]<p class="read-more"><a href="https://www.fengdingbo.com/mongodb-update.html">Read more</a></p> |
// 如果参数包含字段不存在,update()方法将添加新的字段。
db.test.update(
{_id:[......]<p class="read-more"><a href="https://www.fengdingbo.com/mongodb-update.html">Read more</a></p>
find()函数原型
db.collection.find( <query>, <projection> )
例子
1.读取所有数据
2.读取_id值为1的数据
3.读取_id值大于3[……]
Read more
插入(insert())
字段名在创建时有以下限制
1.字段名_id为系统预留字段,系统默认主键,所以它的值必须是唯一的。
2.字段名第一个字符不能为 $ 字符
3.字段名不能包含 . 字符
insert()函数原型
db.collection.insert( <document&[......]Read more
MongoDB官方下载地址:http://www.mongodb.org/downloads
# 获取文件包
wget http://fastdl.mongodb.org/linux/mongodb-linux-i686-2.2.3.tgz
# 解压文件
tar zxvf mongodb[......]<p class="read-more"><a href="https://www.fengdingbo.com/install-mongodb.html">Read more</a></p> |
# 获取文件包
wget http://fastdl.mongodb.org/linux/mongodb-linux-i686-2.2.3.tgz
# 解压文件
tar zxvf mongodb[......]<p class="read-more"><a href="https://www.fengdingbo.com/install-mongodb.html">Read more</a></p>