I have the following Dataframe (df)
id b c
1 a x1
2 a xx1
3 b x1
4 d xxxx1
What I want to do from my script
of python
is a update
to a database Oracle
and that it is completed and executed reading from my df, that is something like this
dupdate=pd.read_sql("update tabla set campo=df['c'] where id = df['id'] and b=df['b']",engine)
Thanks Greetings