create table t1(name json); insert into t1 values(’ { “hello”: “song”, “num”: 111, “obj”: { “who”: “me”, “arr”: [ 1, 2, “three” ], “more”:“hey” }, “bool”: true, “can”: false, “learning”: null, “chiness”: “中文” }' ); mysql> select json_depth(name) from