json remove mysql

Solutions on MaxInterview for json remove mysql by the best coders in the world

showing results for - "json remove mysql"
Jessim
16 Sep 2016
1mysql> SET @j = '["a", ["b", "c"], "d"]';
2mysql> SELECT JSON_REMOVE(@j, '$[1]');
3+-------------------------+
4| JSON_REMOVE(@j, '$[1]') |
5+-------------------------+
6| ["a", "d"]              |
7+-------------------------+