Answers for "mysql json remove from array"

SQL
0

json_remove mysql

mysql> SET @j = '["a", ["b", "c"], "d"]';
mysql> SELECT JSON_REMOVE(@j, '$[1]');
+-------------------------+
| JSON_REMOVE(@j, '$[1]') |
+-------------------------+
| ["a", "d"]              |
+-------------------------+
Posted by: Guest on August-23-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language