create table sample_table ( id int(11) not null ,json_data json null ); alter table sample_table add primary key (id); alter table sample_table change id id int auto_increment; alter table sample_table add hoge varchar(50) generated always as (json_unquote(json_extract(`json_data`,'$.hoge'))) virtual after json_data; alter table sample_table add index sample_table_idx(hoge);
0 件のコメント:
コメントを投稿