国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

MongoDB 刪除集合

2018-03-20 14:49 更新

MongoDB教程 - MongoDB 刪除集合


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

語(yǔ)法

drop()命令的語(yǔ)法如下

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ù)庫(kù)中的可用集合。

>show collections
mycol
system.indexes
w3cschool
>


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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)