#每天一个知识点#
JSON_EXTRACT(data_json,'$.key')可以检索出data_json字段中有key的数据
$.key获取一个key对应的value
$**.key获取data_json所有key对应的value
评论