十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
本篇内容主要讲解“MongoDB数据删除的命令”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“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()
到此,相信大家对“MongoDB数据删除的命令”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!