일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- venv
- 코딩
- nocookie
- 충북
- 단축어
- Google Drive
- G-Suite
- MongoDB
- 탐욕 알고리즘
- List
- 유튜브
- 그리디 알고리즘
- gpu 병렬처리
- 깃허브
- flask
- selenium
- 아이폰
- python
- 알고리즘
- 파이썬
- 바로학교
- pymongo
- 리스트
- docker-compose
- 장고
- 링크
- Django
- 추천 영상
- 구글 드라이브
- DB
Archives
- Today
- Total
SSAMKO의 개발 이야기
[pymongo] 자주 쓰는 명령어 - find_one_and_update 본문
반응형
조건에 부합하는 문서를 찾아 update하는 명령어. find_one_and_update
기본적으로는 update 전 문서를 return한다.
만약 조건에 부합하는 문서가 없으면 None을 return한다.
update 후의 문서를 return하고 싶을때,
from pymongo import ReturnDocument
db.example.find_one_and_update(
{'_id': 'userid'},
{'$set': {'state': 'good'}},
return_document=ReturnDocument.AFTER)
ReturnDocument를 import하고,
find_one_and_update의 마지막 인자로 return_documnet=ReturnDocument.AFTER를 넣어주면, update 후의 문서를 return 하게 된다.
반응형
'mongoDB' 카테고리의 다른 글
[mongoDB] array의 길이(사이즈)의 범위를 지정해서 검색 (0) | 2021.01.19 |
---|---|
[mongoDB] key name을 변경하고 싶을때, rename (0) | 2021.01.07 |
[mongoDB] 자주쓰는 명령어 - distinct (0) | 2021.01.05 |
[mongoDB] 자주쓰는 기본 명령어 - unset (0) | 2021.01.04 |
[mongoDB] mongodump - dump options 덤프 옵션 (0) | 2020.12.31 |
Comments