I can do this query in Oracle:
update table1 set currentV=currentV + 1 where id = 12;
How do I do it in sqlalchemy?
I tried to do this using sqlalchemy