Replace Function
Seq 2025.1 introduces a Replace
function that replaces occurrences of a pattern with a replacement. To replace the word March
with the word April
:
select Replace('The month is March', 'March', 'April')
// 'The month is April'
The pattern may be a
…