I'm using Propel 2 and am trying to do a batch update of records. The following works as expected:
//UPDATE animal SET species='Duck';
AnimalQuery::create()->update(['Species' => 'Duck']);
However, I'm not sure what to do if I want to do something like the following:
UPDATE animal SET species=REPLACE(species, 'Mallard', 'Duck');
Is this possible using Propel?