码迷,mamicode.com
首页 > 数据库 > 详细

Python MongoDB 删除集合

时间:2020-05-09 16:47:19      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:详细   ref   xmx   customer   tail   nan   database   返回   tom   

删除集合

您可以使用 drop() 方法删除在 MongoDB 中调用的表或集合。

实例

删除 "customers" 集合:

import pymongo

myclient = pymongo.MongoClient("mongodb://localhost:27017/")
mydb = myclient["mydatabase"]
mycol = mydb["customers"]

mycol.drop()

运行实例

如果成功删除集合,则 drop() 方法返回 true,如果集合不存在则返回 false。

 

 

 

 

 

 

以上就是   Python MongoDB 删除集合   的详细内容,更多请关注w3school其它相关文章!

重庆代孕【徽信13022337922】成都代孕【徽信13022337922】长沙代孕【徽信13022337922】

武汉代孕【徽信13022337922】贵阳代孕【徽信13022337922】昆明代孕【徽信13022337922】

Python MongoDB 删除集合

标签:详细   ref   xmx   customer   tail   nan   database   返回   tom   

原文地址:https://www.cnblogs.com/yuya670/p/12858340.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!