标签: python
我有以下数据框(df)
id b c 1 a x1 2 a xx1 3 b x1 4 d xxxx1
我想从我的python脚本中执行的是一个UPDATE(Oracle数据库),并且我的更新已完成并从df执行
df
类似.....
dupdate = pd.read_sql("update table set column=df['c'] where id = df['id'] and b=df['b']", engine)
非常感谢!