특정 데이터베이스의 모든 컬렉션을 나열하려면 먼저 데이터베이스를 전환해야 합니다. 쿼리는 다음과 같습니다 -
> 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