Skip to content

Instantly share code, notes, and snippets.

@RomikMakavana
Last active November 22, 2021 08:01
Show Gist options
  • Save RomikMakavana/e55be3ac8024c6155602534cbb48be4f to your computer and use it in GitHub Desktop.
Save RomikMakavana/e55be3ac8024c6155602534cbb48be4f to your computer and use it in GitHub Desktop.
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]" |
+-------------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment