赞
踩
本篇文章探讨了大数据技术之MongoDB数据删除,希望阅读本篇文章以后大家有所收获,帮助大家对相关内容的理解更加深入。
1.查看集合
show collections
2.向集合中添加数据
db.runoob.insertOne(
{
'title':'remove method',
'url':'https://blog.51cto.com/suyanzhu',
'description':'this is my blog'
}
)
db.runoob.insertMany([
{
'title':'data1',
'url':'https://blog.51cto.com/suyanzhu',
'description':'this is data1'
},
{
'title':'data2',
'url':'https://blog.51cto.com/suyanzhu',
'description':'this is data2'
}
])
3.查看数据
db.runoob.find().pretty()
4.删除单个数据
db.runoob.deleteOne({'title':'remove method'})
5.查看数据
db.runoob.find().pretty()
本文由职坐标整理发布,学习更多的相关知识,请关注职坐标IT知识库!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。