[MongoDB]MongoDB 시작하기2(MongoDB 명령어 정리)

Imagem de capa

MongoDB를 활용하기 위해선 Database, Collection(dbms의 table), Document(dbms의 data) 관련 명령어를 숙지해야 한다. 아래 명령어가 주로 쓰이는 MongoDB 명령어이다. _ _ _

[Database 명령어]

1) mongodb 실행

2) database 생성

3) 사용중인 database 확인

4) 데이터베이스 리스트 확인

5) Database 제거


[Collection 명령어]

1) Collection 생성

2) Collection 리스트 확인

3) Collection 삭제


[Document 명령어]

1) Document 추가

2) Document 조회(collection 전체)

3) Document 조회(단일 조회)

3) Document 삭제


*출처 :