Computer >> 컴퓨터 >  >> 프로그램 작성 >> MongoDB

특정 MongoDB 데이터베이스에 컬렉션을 표시하시겠습니까?

<시간/>

먼저 아래 구문과 같이 USE 명령을 사용하여 MongoDB의 특정 데이터베이스로 전환합니다. -

use yourDatabaseName;
db.getCollectionNames();
사용

WEB 데이터베이스 컬렉션을 표시하기 위해 위의 구문을 구현해 보겠습니다. -

> use web;
   switched to db web
> db.getCollectionNames();
로 전환

이것은 다음과 같은 출력을 생성합니다 -

[
   "2015-myCollection",
   "2015-yourCollection",
   "2019-employeeCollection",
   "addColumnDemo",
   "applyConditionDemo",
   "calculateAverage",
   "calculateSumOfDocument",
   "changeSimpleFieldDemo",
   "check",
   "checkFieldDemo",
   "collationExample",
   "compoundIndexDemo",
   "countandsumdemo",
   "creatingAliasDemo",
   "decreasetimeusingindex",
   "demo1",
   "demo10",
   "demo11",
   "demo12",
   "demo13",
   "demo14",
   "demo15",
   "demo16",
   "demo17",
   "demo18",
   "demo19",
   "demo2",
   "demo20",
   "demo21",
   "demo22",
   "demo23",
   "demo24",
   "demo25",
   "demo26",
   "demo27",
   "demo28.example",
   "demo29",
   "demo3",
   "demo30",
   "demo31",
   "demo32",
   "demo33",
   "demo34",
   "demo35",
   "demo36",
   "demo37",
   "demo38",
   "demo39",
   "demo4",
   "demo5",
   "demo6",
   "demo7",
   "demo8",
   "demo9",
   "destinationCollection",
   "emp_info",
   "emptyCollection",
   "extractParticularElementDemo",
   "getSpecificData",
   "getTheMaxValueDemo",
   "indexCreationDemo",
   "missingDocumentDemo",
   "promoteSubfieldsDemo",
   "pullWithPositionalOperatorDemo",
   "removeNullDemo",
   "replacevaluedemo",
   "searchDocumentsDemo",
   "searchSubFieldDemo",
   "sourceCollection",
   "splitString",
   "testInArray",
   "twoSpecificIdsDemo",
   "updatingDemo",
   "version"
]