jooq replace

Solutions on MaxInterview for jooq replace by the best coders in the world

showing results for - "jooq replace"
David
03 Nov 2018
1using(configuration)
2  .update(TABLE)
3  .set(TABLE.FIELD, 
4       replace(TABLE.YOUR_FIELD, "original_string", "replace_string"))
5  .where(TABLE.YOUR_FIELD.like("%original_string%"))
6  .execute();
queries leading to this page
replacejooq replace