mysql8 operation of json

insert into myTable (t_id,year,details) values (5,2019,cast('{"haha":[{"u":1,"t":123 }]}' as json))

 SELECT id  FROM myTable where id=4 and json_contains_path(details->'$[*]', 'one','$[*].haha');

 update myTable set details=JSON_ARRAY_APPEND(details,'$[1].haha',cast('{"u":2,"t":999}' as json)) where id=5

Guess you like

Origin blog.51cto.com/kankan/2427723