In MariaDB, QUOTE()
is a built-in string function that allows you to escape a string so that it’s suitable for inclusion in an SQL statement.
The string is returned enclosed by single quotes, and a backslash is prepended to each instance of single quote ('
), backslash (\
), ASCII NUL
, and Control-Z
characters.