from pymongo import MongoClient
import pandas as pd
# 连接到MongoDB(这里假设MongoDB运行在本地默认端口上)
mgclient = MongoClient('localhost', 27017)
# 选择数据库(如果你没有指定数据库,MongoDB会使用默认的'test'数据库)
db = mgclient['test'] # 替换'your_database_name'为你的数据库名
test1_collection=db["test1"].find({})
test1_list=list(test1_collection)
test2_collection=db["test2"].find({})
test2_list=list(test2_collection)
# 这种方式只适合插入存在的数据。
for document1 in test1_list:
document1.pop("_id")
document1["codename"]=document1["code"]
# document1["codename"] = document1["code"]
for document2 in test2_list:
# dataframe包含关系不是很好merge
if document1["code"]==document2["code"] and document1["code"].startswith(document2["code"]):
document1["codename"]=document2["name"]
print(document1)
# 如果只用写入能够匹配上的,在这里insert
# db["test3"].insert_one(document1)
db["test3"].insert_one(document1)
python实现数据库两个表之间的更新操作(模糊匹配)示例
半吊子的程序狗2024-10-28 15:27
相关推荐
Kai HVZ34 分钟前
python爬虫----爬取视频实战古希腊掌管学习的神36 分钟前
[LeetCode-Python版]相向双指针——611. 有效三角形的个数m0_7482448339 分钟前
StarRocks 排查单副本表B站计算机毕业设计超人1 小时前
计算机毕业设计PySpark+Hadoop中国城市交通分析与预测 Python交通预测 Python交通可视化 客流量预测 交通大数据 机器学习 深度学习路人甲ing..1 小时前
jupyter切换内核方法配置问题总结游客5201 小时前
opencv中的常用的100个API每天都要学信号1 小时前
Python(第一天)凡人的AI工具箱1 小时前
每天40分玩转Django:Django国际化咸鱼桨2 小时前
《庐山派从入门到...》PWM板载蜂鸣器北京_宏哥2 小时前
python接口自动化(四十)- logger 日志 - 下(超详解)