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