Vor Kurzem verwende ich das JSON-Speicherformat von MySQL und es ist ein sehr seltsames Problem aufgetreten.
INSERT INTO `json` (`notes`) VALUES ('[{"name":1}]');
我用上述语句插入json数组,navicat的显示是正常的
当我用UPDATE json SET notes =json_array_append(notes, '$' , '["sa"]' ) WHERE ID=6;
Das Escape-Zeichen erscheint beim Hinzufügen eines neuen JSON
Was ist das Problem?
json_array_append(notes, '$' , '["sa"]' )
改为json_array_append(notes, '$' , CAST('["sa"]' AS JSON))