SQL/NoSQL

[MongoDB] mongoDB compass사용법

dddzr 2023. 9. 6. 23:54

먼저 공식 문서입니다.

https://www.mongodb.com/docs/compass/master/

 

What is MongoDB Compass? — MongoDB Compass

MongoDB Compass is a powerful GUI for querying, aggregating, and analyzing your MongoDB data in a visual environment. Compass is free to use and source available, and can be run on macOS, Windows, and Linux. Download Compass View installation instructions

www.mongodb.com

 

1. database 생성

+ 버튼을 눌러 생성한다. 

 

2. collection 생성

database를 처음 생성할 때 collection도 하나 생성하게 되어있다.

+버튼을 누르면 나타나는 팝업

 

 

3. Document 추가

insert document를 누르면 아래의 팝업이 열리고 _id 필드 기본 예제처럼 쓰여 있는데

_id 필드는 MongoDB에서 자동으로 생성되기 때문에 따로 설정할 필요가 없습니다.

기본 코드를 지우고 Document를 넣어보았습니다.

아래는 생성된 모습입니다.

 

'SQL > NoSQL' 카테고리의 다른 글

[MongoDB] Database, Collection, Document 개념, 예제  (0) 2023.09.06
RDBMS NoSQL 비교 (CRUD 예시)  (0) 2023.09.06
[MongoDB] 설치 (Tool 사용법)  (0) 2023.09.05