W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
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 >
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: