Bạn có thể sử dụng json_extract
(5,7 lên). https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html# Chức năng_json-extract
SELECT user_id, json_data
FROM articles
WHERE json_extract(json_data, '$.title') LIKE '%CPU%';
Bạn có thể sử dụng json_extract
(5,7 lên). https://dev.mysql.com/doc/refman/5.7/en/json-search-functions.html# Chức năng_json-extract
SELECT user_id, json_data
FROM articles
WHERE json_extract(json_data, '$.title') LIKE '%CPU%';