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影片教學
#以上是mysql能處理json嗎的詳細內容。更多資訊請關注PHP中文網其他相關文章!