MongoDB 刪除集合

2018-03-20 14:49 更新

MongoDB教程 - MongoDB 刪除集合


MongoDB的 db.collectionName.drop()用于從數(shù)據(jù)庫中刪除集合。

語法

drop()命令的語法如下

db.COLLECTION_NAME.drop()

drop()方法將返回true,如果所選的集合被成功刪除,否則它將返回false。

例子

首先,檢查mydb中的可用集合。

>use mydb
switched to db mydb
>show collections
mycol
mycollection
system.indexes
w3cschool
>

刪除集合 mycollection 。

>db.mycollection.drop()
true
>

檢查數(shù)據(jù)庫中的可用集合。

>show collections
mycol
system.indexes
w3cschool
>


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號