Robo3T 로 보는게 편하다.
맨날 까먹는 MongoDB 명령어 모음집
DB조회
show dbs
컬렉션 조회
use test; //db선택. 없을 때는 만들어짐.
show collections;
전체 조회
db.getCollection('collectionName').find()
db.getCollection('collectionName').find().pretty
조건 조회
컬럼명="테스트" 인 document 조회
db.getCollection('collectionName').find("컬럼명":"테스트")
특정 필드 업데이트
db.collectionName.update( { name: "song" }, { $set: { age: 31 } } )
도큐먼트 업데이트
db.collectionName.update( { name: "song" }, { "name": " song update", age: 32 })
특정 필드 삭제
db.collectionName.update ( { name: "song" } , { $unset: { age: 32 } } )
'IT 잡동사니' 카테고리의 다른 글
[Docker] Ubuntu 도커 설치 / 도커 삭제 / 버전 업그레이드 / 도커 명령어까지 쉽다쉬워 (2) | 2024.11.05 |
---|---|
Zeppelin multi instance (H/A) 구성 (0) | 2024.11.05 |
Ubuntu OpenLDAP 설치 (0) | 2024.07.01 |
Zeppelin 설치(Windows) - UI 안나오는 이슈 해결, 원격 접속 허용 (0) | 2024.07.01 |
Zeppelin spark interpreter 연동 (0) | 2024.07.01 |