pymongo中判斷索引是否已經存在,若是不存在則建立,且 在 pymongo 中使用 sort 和limit...

# 查看是否有以「id」建立的倒序索引,若是沒有則添加 indexs = collection_target.index_information() if "id_-1" not in indexs: collection_target.create_index([("id", -1)]) # 先查詢表中已經存在的記錄的最大id的記錄 find_one = collection_targe
相關文章
相關標籤/搜索