--- { "title": "json_quote", "language": "en" } --- # json_quote ## Description ### Syntax `VARCHAR json_quote(VARCHAR)` Enclose json_value in double quotes ("), escape special characters contained. ## example ``` MySQL> SELECT json_quote('null'), json_quote('"null"'); +--------------------+----------------------+ | json_quote('null') | json_quote('"null"') | +--------------------+----------------------+ | "null" | "\"null\"" | +--------------------+----------------------+ MySQL> SELECT json_quote('[1, 2, 3]'); +-------------------------+ | json_quote('[1, 2, 3]') | +-------------------------+ | "[1, 2, 3]" | +-------------------------+ MySQL> SELECT json_quote(null); +------------------+ | json_quote(null) | +------------------+ | NULL | +------------------+ MySQL> select json_quote("\n\b\r\t"); +------------------------+ | json_quote('\n\b\r\t') | +------------------------+ | "\n\b\r\t" | +------------------------+ ``` ## keyword json_quote