如何在 mysql 中的 json 的子字段上创建索引?

How to create index on sub field of json arry in mysql?

可以使用多值索引或虚拟列索引在数组元素上创建索引。是否可以在数组元素的子字段上创建索引?例如

create table link
(
    id bigint not null primary key,
...
    left json not null
)

左列结构:

[{
  "fieldId": 123, ...
}]

多值索引:可创建,查询时不使用

ALTER TABLE link ADD INDEX IDX_LEFT_FIELD( (CAST(`left`->'$[*].fieldId' AS unsigned ARRAY)) );

虚拟列:可以创建,但每行的列 left_field_id 产生值 0 而不是子字段 fieldId

的值
ALTER TABLE link
ADD COLUMN `left_field_id` bigint GENERATED ALWAYS AS (`left`->'$[*].fieldId') Virtual NULL AFTER `left`;

不知以上说法是否有错误?

正如我所见,使用了索引。

DEMO

id select_type table partitions type possible_keys key key_len ref rows filtered Extra
1 SIMPLE link null range IDX_LEFT_FIELD IDX_LEFT_FIELD 9 null 5 100.00 Using where