반응형
mongosh
use admin
show dbs
> 인증오류
DB 생성
mongosh admin -u "USERNAME" -p "PW"
show dbs
use test_db
show dbs
> test_db가 안보인다
데이터 추가
db.collection.insert()
db.collection.insertOne({})
db.collection.insertMany([{},{}.....])
db.collection.insert({<DATA>})
db
> DB 이름 출력
show dbs
데이터 입력(Update)
db.user.insert({<DATA>})
데이터 읽기
db.collection.find()
DB 삭제(Delete)
db.dropDatabase()
728x90
반응형
'Data > Data Engineering' 카테고리의 다른 글
[Spark] Spark Streaming (1) | 2022.12.18 |
---|---|
[Spark] SQL 연습하기 (1) | 2022.12.18 |
[MongoDB] root(admin) 계정 생성하기 (0) | 2022.11.26 |
[MongoDB] Redhat8에 MongoDB 설치하기 (0) | 2022.11.26 |
[Hive] Redhat8에 Hive 설치하기 (2) | 2022.11.20 |