使用 JSON_EXTRACT()。
mysql> create table t ( j json );
mysql> insert into t set j = '[{"id": "26", "title": "similar1", "score": "0.97"}, {"id": "27", "title": "similar2", "score": "0.87"}, {"id": "28", "title": "similar2", "score": "0.87"}]';
mysql> select json_extract(j, '$[*].title') from t;
+--------------------------------------+
| json_extract(j, '$[*].title') |
+--------------------------------------+
| ["similar1", "similar2", "similar2"] |
+--------------------------------------+
如果你想在 MySQL 中使用 JSON 数据,你应该阅读关于搜索 JSON 值的函数的文档,并学习使用 JSON 搜索表达式。