REPLACE
-Beispiele
replace ('Billy Wilder', 'il', 'oog') -- Ergebnis 'Boogly Woogder'
replace ('Billy Wilder', 'il', '') -- Ergebnis 'Bly Wder'
replace ('Billy Wilder', null, 'oog') -- Ergebnis NULL
replace ('Billy Wilder', 'il', null) -- Ergebnis NULL
replace ('Billy Wilder', 'xyz', null) -- Ergebnis NULL (!)
replace ('Billy Wilder', 'xyz', 'abc') -- Ergebnis 'Billy Wilder'
replace ('Billy Wilder', '', 'abc') -- Ergebnis 'Billy Wilder'