1 往表A中增加json类型字段`a`
alter table A add `a` json DEFAULT NULL COMMENT '字段名';
2 查询json不为空的数据
select * from A where `a` is not null and json_length(a) > 0;
1 往表A中增加json类型字段`a`
alter table A add `a` json DEFAULT NULL COMMENT '字段名';
2 查询json不为空的数据
select * from A where `a` is not null and json_length(a) > 0;