SQLAlchemy ORM Mavens,
Using SQLAlchemy ORM (not CORE), how can a bulk UPDATE be configured on an unknown quantity of objects in a manner similar to a SQL UPDATE-SET-WHERE command (such as this one:)?
UPDATE items SET items.price = (items.price * 1.1) WHERE Left(item_id, 4) = "PAX-";
After hours of poring over manuals and docs...all I can find are CORE examples—and hope you'll be so kind as to offer a tip.
Many, many thanks! Planewryter
PS: Using Python 3.7 and SQLAlchemy v1.2.13 on an iMac w/macOS 10.14.1