CREATE DATABASE testjson; USE testjson; CREATE TABLE y (x JSON); INSERT INTO y VALUES (JSON_ARRAY('A','B','C')); UPDATE y SET x=JSON_ARRAY_APPEND(x,"$[0]","*"); ...
確定! 回上一頁