文章目录
1. pymongo
中的$where
和this
例如,mongodb的数据库的文档中, 每行数据都有
current_num
(会变)和total_num
(不变)
要查询出current_num
小于total_num
的记录
mongoclient[db][tb].find({"$where": "this.current_num < this.total_num"})
2023-10-28 09:55:22
pymongo
中的$where
和this
例如,mongodb的数据库的文档中, 每行数据都有
current_num
(会变)和total_num
(不变)
要查询出current_num
小于total_num
的记录
mongoclient[db][tb].find({"$where": "this.current_num < this.total_num"})
下一篇:5.用户名唯一性校验