Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MongoDB

จะแสดงรายการคอลเลกชันทั้งหมดจากฐานข้อมูล MongoDB เฉพาะได้อย่างไร


หากคุณต้องการแสดงรายการคอลเลกชันทั้งหมดจากฐานข้อมูลใดฐานข้อมูลหนึ่ง คุณต้องสลับฐานข้อมูลก่อน แบบสอบถามมีดังนี้ −

> use sample;
switched to db sample
> db.getCollectionNames();

ต่อไปนี้เป็นผลลัพธ์ -

[
   "copyThisCollectionToSampleDatabaseDemo",
   "deleteDocuments",
   "deleteDocumentsDemo",
   "deleteInformation",
   "employee",
   "internalArraySizeDemo",
   "sourceCollection",
   "updateInformation",
   "userInformation"
]

แบบสอบถามอื่นสามารถเป็นดังต่อไปนี้ -

> show collections;

ต่อไปนี้เป็นผลลัพธ์ -

copyThisCollectionToSampleDatabaseDemo
deleteDocuments
deleteDocumentsDemo
deleteInformation
employee
internalArraySizeDemo
sourceCollection
updateInformation
userInformation