VeloDB Cloud
SQL Manual
SQL Functions
String Functions
QUOTE

quote

description

Syntax

VARCHAR quote(VARCHAR str)

Output all the strings in the argument as is and wrap them with ''

example

mysql> select quote('hello world!\\t');
+-------------------------+
| quote('hello world!\t') |
+-------------------------+
| 'hello world!\t'        |
+-------------------------+

keywords

QUOTE