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 >
更多建議: