본문 바로가기
파이썬

파이썬 How do I do greater than/less than using MongoDB?

by º기록 2020. 10. 14.
반응형

pymongo 드라이버를 사용하고 있습니다.

누군가 pymongo를보고 더 큰 일을하는 방법을 말해 줄 수 있습니까? 나는 모든 일에 익숙합니다.

 

해결 방법

 


>>> d = datetime.datetime(2009, 11, 12, 12)
>>> for post in posts.find({"date": {"$lt": d}}).sort("author"):
...   post
...
{u'date': datetime.datetime(2009, 11, 10, 10, 45), u'text': u'and pretty easy too!', u'_id': ObjectId('...'), u'author': u'Eliot', u'title': u'MongoDB is fun'}
{u'date': datetime.datetime(2009, 11, 12, 11, 14), u'text': u'Another post!', u'_id': ObjectId('...'), u'author': u'Mike', u'tags': [u'bulk', u'insert']}

 

참조 페이지 https://stackoverflow.com/questions/4791555

 

 

반응형

댓글