我正在尝试使用谓词从 Sqlite 中的 JSON 数组中检索单个项目。
这是我的样本数据集:
{
"book": [
{
"author": "Nigel Rees",
"category": "reference",
"price": 8.95,
"title": "Sayings of the Century"
},
{
"author": "Herman Melville",
"category": "fiction",
"isbn": "0-553-21311-3",
"price": 8.99,
"title": "Moby Dick"
},
{
"author": "J.R.R. Tolkien",
"category": "fiction",
"isbn": "0-395-19395-8",
"price": 22.99,
"title": "The Lord of the Rings"
}
]
}
我只想检索价格为 22.99 的商品。
在 XPath 中,我会做这样的事情://book[@price='22.99']
我在线尝试了一些 JSON 路径评估器(https://jsonpath.com/),这应该可以工作:$.book[?(@.price == 22.99)]
但是,当我尝试SELECT
在 Sqlite 的查询中使用相同的路径时,它会引发以下异常:
Result: JSON path error near '[?(@.price == 22.99)]'
我错过了什么吗?当我尝试没有谓词(如$.book[2].title
)的路径时,它可以工作。
我的完整 SQL 查询是(JSON 在content
字段中):
SELECT Json_extract(content, '$.book[?(@.price == 22.99)]')
FROM json_test
WHERE id = 1
PS:我知道我可以使用该WHERE
语句进行查询,但我更愿意仅使用 JSON 路径使其工作。