If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
आपने MongoDB में collections को create और use करना सीखा , इस topic में हम collection को drop / delete करना सीखेंगे ।
MongoDB में drop()
method एक database या collection को हमेशा के लिए delete करने के लिए use होता है। इस method का use करके आप MongoDB database में stored collection को drop / delete
करते हैं।
यह SQL की DROP
statement की तरह ही है।
db.collectionName.drop()
यहां collectionName
की जगह आप अपना collection का नाम दें जिसे delete करना है।
drop()
method का use करने से पहले ध्यान रहे कि इससे data हमेशा के लिए delete होगा। और recover करना मुश्किल हो सकता है अगर आपके पास backup नहीं है।
●●●
Suppose आपके पास एक "employees
" collection है जिसे drop करना है। हालाँकि आप show collections
command run करके देख सकते हैं कि कौन कौन से collections आपके database में हैं।
show collections
इस command से सभी collections दिख जायेंगे हाँ जिनमे data नहीं होगा वो list नहीं होंगे।
delete colelction
db.employees.drop();
तो कुछ इस तरह MongoDB में collections को drop करते हैं।
Delete documents from collection . .
●●●