210616_mongoDB5
😎 mongoDB 메뉴얼에서 import/export 관련 문서는 4.2 버전에서 확인하기 (21.06.16 기준, 추 후 업데이트 될 수 있음) mongoimport : MongoDB 가져오기 외부의 파일에서 현재 데이터베이스로 불러오는 경우 사용 mongoexport : MongoDB 내보내기 현재 데이터베이스를 외부파일로 내보내는 경우 사용 [의미] - h[--host], u[--username], -p[--password], -d[--db], -c[--collection], -f[--fields], --file, --drop, --out, // myaddr.json 으로 아래의 파일을 저장 {"address" : [ {"name":"홍길동", "addr":"서울시 서초동"}, {"name":"정길..
2021. 6. 17.
210614_mongoDB3
Q1) Product 전체 내용을 출력해보자. 단 _id는 빼고출력하자. db.Product.find({},{_id:0}); > db.Product.find({},{_id:0}); { "Name" : "notebook", "Price" : 200, "Category" : "material" } { "Name" : "pencil", "Price" : 80, "Category" : "material" } { "Name" : "salad", "Price" : 220, "Category" : "food" } { "Name" : "others", "Price" : 20, "Category" : "material" } { "Name" : "bread", "Price" : 100, "Category" : "food"..
2021. 6. 14.
210611_mongoDB2
✨ 연산자 활용, 집계 함수 # score 컬렉션 생성 > use my_score switched to db my_score > db.score.insert({name:"aaa", kor :90, eng:80, mat:98, test:"midterm"}) WriteResult({ "nInserted" : 1 }) > db.score.insert({name:"bbb", kor :100, eng:100, mat:76, test:"final"}) WriteResult({ "nInserted" : 1 }) > db.score.insert({name:"ccc", kor :80, eng:55, mat:67, test:"midterm"}) WriteResult({ "nInserted" : 1 }) > db.score..
2021. 6. 12.