def add_field_in_collection(companyCode, agentCode):
body={
"is_activate": int(1)
}
print("companyCode : {0}, agentCode : {1}".format(companyCode, agentCode))
collection_this = mongo_client[companyCode][agentCode]
queryCondition = {
"type": "INTENT"
}
collection_this.update(queryCondition, {'$set': body}, upsert=False, multi=True)
print("Creating for {}:{}".format(companyCode, agentCode))
type이라는 FIeld에서 INTENT에 해당되는 값만 body의 내용으로 insert
collection_this.update(queryCondition, {'$set': body}, upsert=False, multi=True)
반응형
'전산 > Database' 카테고리의 다른 글
console에서 mysql 서버 접속 (0) | 2021.04.12 |
---|---|
특정 Column data 변경 (0) | 2021.03.05 |
MySQL 서버 실행 (0) | 2021.02.19 |
mongoDB 설치 (0) | 2021.02.18 |
ORM (0) | 2021.02.06 |
최근댓글