使用 mysql JSON_SEARCH:为啥我必须引用数字?
Posted
技术标签:
【中文标题】使用 mysql JSON_SEARCH:为啥我必须引用数字?【英文标题】:Using mysql JSON_SEARCH: Why do I have to quote numbers?使用 mysql JSON_SEARCH:为什么我必须引用数字? 【发布时间】:2016-10-17 04:16:09 【问题描述】:我有一个“测试”表,其中包含一个 PK 字段“id”和一个 JSON 字段“json_data”。我做了以下插入:
insert into test (json_data) values (JSON_ARRAY(1,2));
但是,如果我这样做了
select * from test where JSON_SEARCH(json_data, 'all', 2) is not null;
我得到“空集”。虽然如果我插入
insert into test (json_data) values (JSON_ARRAY("1","2"));
然后重复查询,我确实终于得到了
+----+------------+
| id | json_data |
+----+------------+
| 2 | ["1", "2"] |
+----+------------+
为什么我必须引用这些数字才能查询它们?我宁愿不那样做,有办法吗?
【问题讨论】:
JSON_SEARCH function works with only string scalars as mentioned in the documentation 【参考方案1】:根据 mysql 文档,JSON_SEARCH 仅适用于字符串。
试试这个:
SET @j = '[3, 2, 1]';
SELECT JSON_CONTAINS(@j, '3', '$');
【讨论】:
以上是关于使用 mysql JSON_SEARCH:为啥我必须引用数字?的主要内容,如果未能解决你的问题,请参考以下文章
MYSQL 触发器:JSON_SEARCH 整数 json 数组中的整数值
mysql中json_contains和json_search的区别
使用 MySQL Json_search 函数使用不区分大小写的搜索获取 JSON 数据中值的路径表达式