Mysql は json を処理できます。 Mysql で JSON フィールドを処理するには、ステートメント「SELECT * FROM proxy WHERE json_extract(content,"$.method") = "POST";」などの json_extract 関数を使用できます。
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_extract(ext_value,'$.high')+0 highx
以上がmysqlはjsonを扱えるのでしょうか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。