I'm using Peewee with Postgres database. I want to know how to update multiple records in a tabel at once?
We can perform this update in SQL using these commands, and I'm looking for a Peewee equivalent approach.
ORMs usually dose not support bulk update and you have to use custom SQL, you can see samples in this link (db.excute_sql)