MongoDB Query List

GRoovAllstar·2024년 4월 5일
0
  • 날짜 체크
{'date': {'$gte': new Date('YYYY-MM-DD'), '$lte': new Date('YYYY-MM-DD')}}
  • Key 체크
{'date': {'$exists': true}}
  • 시작하는 문자열 찾기
{'find_string': {'$regex': 'StartWithStrings'}
  • 일치/불일치한 필드 찾기
{'find_key': {'$eq': 'equal_string'}} # 일치하는 필드 값
{'find_key': {'$ne': 'not_equal_string'}} # 불일치하는 필드 값
profile
Keep on eye on the future :)

0개의 댓글