在mongo中,有一个命令非常的方便,就是upsert,顾名思义就是update+insert的作用 根据条件判断有无记录,有的话就更新记录,没有的话就插入一条记录 upsert的使用方法: MongoDB shell version: connecting to: test > use date switched to db date , "sex":"male"}) , "sex":"male"}) , "
以下摘自pymongo文档: update_one(filter, update, upsert=False) update_many(filter, update, upsert=False) filter: A query that matches the document to update. update: The modifications to apply. upsert (optional): If True, perform an insert if no documents m