QUOTE
Returns a result that can be used as a properly escaped data value in a SQL statement.
Syntax
QUOTE(expression string) → string
expression: The input string.
Examples
QUOTE example
QUOTE example using escaping single quotes.
QUOTE example that quotes from a column in sample data.
Usage Notes
The string is returned enclosed by single quotation marks and with each instance of backslash (\), single quote (‘), ASCII NUL, and Control+Z
preceded by a backslash (\). If the argument is NULL
, the return value is the word NULL
without enclosing single quotation marks.
Last updated