일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 김양재 목사
- 김양재
- Big Data
- Statistics
- 딥러닝
- 확률
- 통계
- R
- 빅 데이타
- openCV
- 데이터 과학
- 주일설교
- probability
- node.js
- 몽고디비
- Deep learning
- 빅데이타
- nodeJS
- WebGL
- 빅 데이터
- No SQL
- 김양재 목사님
- 우리들교회
- MongoDB
- data science
- Artificial Intelligence
- 인공지능
- c++
- Machine Learning
- 빅데이터
Archives
- Today
- Total
Scientific Computing & Data Science
[MongoDB] Updating Documents by Document Replacement 본문
Data Science/MongoDB
[MongoDB] Updating Documents by Document Replacement
cinema4dr12 2014. 1. 19. 17:18Written by cinema4d
우선 다음과 같이 데이터를 준비하도록 하자:
// user DB "foobar"
use foobar
// define user1
var user1 = {"username" : "gchoi"}
user1.age = 37
user1.relationships = {"friends" : 100, "enemies" : 1}
// define user2
var user2 = {"username" : "tjkwak"}
user3.age = 31
user2.relationships = {"friends" : 50, "enemies" : 5}
// define user3
var user3 = {"username" : "jmpark"}
user3.age = 25
user3.relationships = {"friends" : 10, "enemies" : 3}
// define user4
var user4 = {"username" : "jhlee"}
user4.age = 37
user4.relationships = {"friends" : 1, "enemies" : 300}
// insert users into "users" collection of DB "foobar"
db.users.insert(user1)
db.users.insert(user2)
db.users.insert(user3)
db.users.insert(user4)
// show stat of DB we are using
db.stats()
여러분의 명령 쉘에서 현재 상태는 다음과 같을 것이다:
> db.stats()
{
"db" : "foobar",
"collections" : 3,
"objects" : 8,
"avgObjSize" : 77,
"dataSize" : 616,
"storageSize" : 16384,
"numExtents" : 3,
"indexes" : 1,
"indexSize" : 8176,
"fileSize" : 201326592,
"nsSizeMB" : 16,
"dataFileVersion" : {
"major" : 4,
"minor" : 5
},
"ok" : 1
}
Update를 위해 다음과 같이 입력하자:
// store userdate with username "jhlee"
var temp = db.users.findOne({"username" : "jhlee"})
// increment the user's age by 1
temp.age++
// display the current age on terminal
temp.age
// update the user with username "jhlee" with temp
db.users.update({"username" : "jhlee"}, temp)
// show users collection
db.users.find()
'Data Science > MongoDB' 카테고리의 다른 글
[MongoDB] Update Modifiers / Part. 2 - $set / $unset (0) | 2014.01.19 |
---|---|
[MongoDB] Update Modifiers / Part.1 - $inc (0) | 2014.01.19 |
[MongoDB] Basic / Life Cycle for MongoDB (0) | 2014.01.19 |
[MongoDB] MongDB 기본명령어 (0) | 2014.01.13 |
[MongoDB] MongoDB Shell (0) | 2014.01.13 |
Comments