作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的问题是关于在mysql的JSON数据类型中搜索时搜索json数组的内容。
所以,如果我在 mysql 表中有两行,带有一个名为 foo
的 json 字段。
第一行有:
{
"items": [
{"type": "bar"}
]
}
第二行有:
{
"items": [
{"type": "baz"}
]
}
我能跑
select `foo`->"$.items[0].type" from `jsontest`
返回 2 个结果:bar
和 baz
我能跑
select `id` from `jsontest` where `foo`->"$.items[0].type" = "bar"
返回 1 个结果:1
- 即。第一行的id。
mysql docs state您可以使用 [*]
来“评估 JSON 数组中所有元素的值”。
但是,以下查询返回零项:
select `id` from `jsontest` where `foo`->"$.items[*].type" = "bar"
我的查询有什么问题?
最佳答案
进行以下查询:
select id, `foo`->"$.items[*].type[0]" from `jsontest`;
您会注意到返回值显示为“[bar]”,这是 JSON 数组。
select * from `jsontest`
where `foo`->"$.items[*].type" = JSON_ARRAY('bar');
无论如何,下面的查询也应该有效:
select id from `jsontest` where JSON_SEARCH(`foo`, 'all','bar') is not null;
关于mysql - 遍历数组的 mysql JSON 路径的正确语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38657793/
我是一名优秀的程序员,十分优秀!