mysql, json_extract()函數(shù)屬于mysql,可以用來查詢json中某個字段的值。
基本語法格式是:
JSON_EXTRACT(json_doc,path【,path】 …)
注意:如果數(shù)據(jù)量很小,而json字符串很大,可以使用這個方法。如果數(shù)據(jù)量很大,最好不要用。
參考示例:
json_extract()函數(shù)的使用,示例代碼:
mysqlselectjson_extract({name:Zhaim,tel:13240133388},$.tel);+--------------------------------------------------------------+|json_extract({name:Zhaim,tel:13240133388},$.tel)|+--------------------------------------------------------------+|13240133388|+--------------------------------------------------------------+1rowinset(0.00sec)mysqlselectjson_extract({name:Zhaim,tel:13240133388},$.name);+---------------------------------------------------------------+|json_extract({name:Zhaim,tel:13240133388},$.name)|+---------------------------------------------------------------+|Zhaim|+---------------------------------------------------------------+1rowinset(0.00sec)
mysql,以上就是本文為您收集整理的mysql最新內(nèi)容,希望能幫到您!更多相關(guān)內(nèi)容歡迎關(guān)注。