OVERLAY()
Overwrites part of, or inserts into, a string
VARCHAR
or BLOB
OVERLAY (string PLACING replacement FROM pos [FOR length])
Parameter | Description |
---|---|
string |
The string into which the replacement takes place |
replacement |
Replacement string |
pos |
The position from which replacement takes place (starting position) |
length |
The number of characters that are to be overwritten |
By default, the number of characters removed from (overwritten in) the host string equals the length of the replacement string.With the optional fourth argument, a different number of characters can be specified for removal.
-
This function supports
BLOB
s of any length. -
If string or replacement is a
BLOB
, the result is aBLOB
.Otherwise, the result is aVARCHAR(n)
with n the sum of the lengths of string and replacement. -
As usual in SQL string functions, pos is 1-based.
-
If pos is beyond the end of string, replacement is placed directly after string.
-
If the number of characters from pos to the end of string is smaller than the length of replacement (or than the length argument, if present), string is truncated at pos and replacement placed after it.
-
The effect of a “
FOR 0
” clause is that replacement is inserted into string. -
If any argument is
NULL
, the result isNULL
. -
If pos or length is not a whole number, bankers' rounding (round-to-even) is applied, i.e. 0.5 becomes 0, 1.5 becomes 2, 2.5 becomes 2, 3.5 becomes 4, etc.
Warning
|
When used on a |