mysql能處理json嗎

2020-10-05 18:00:27

mysql能處理json。Mysql中處理JSON欄位,可以用json_extract函數,例「SELECT * FROM proxy WHERE json_extract(content,"$.method") = "POST";」語句。

Mysql中處理JSON欄位

處理json欄位,可以用json_extract函數:

select * from (select json_extract(ext_value,'$.high')+0 highx,batch_id from batch_ext_1 where ext_type=19 ) a where a.highx>15000000000

SELECT * FROM proxy WHERE   json_extract(content,"$.method") = "POST";

將json欄位中的String值轉為數位型,可以用+0操作,比如上面語句中

json_extract(ext_value,'$.high')+0 highx

最終會變成數位型。

推薦教學:

以上就是mysql能處理json嗎的詳細內容,更多請關注TW511.COM其它相關文章!