最近在使用mysql的json儲存格式,出現了很蹊蹺的問題。
INSERT INTO `json` (`notes`) VALUES ('[{"name":1}]');我用上述語句插入json數組,navicat的顯示是正常的當我用UPDATE json SET notes =json_array_append(notes, '$' , '["sa"]' ) WHERE ID=6 ;新增新的json時候出現了轉義符
INSERT INTO `json` (`notes`) VALUES ('[{"name":1}]');
UPDATE json SET notes =json_array_append(notes, '$' , '["sa"]' ) WHERE ID=6 ;
#請問這是出現了什麼問題呢?
json_array_append(notes, '$' , '["sa"]' ) 改為json_array_append(notes, '$' , CAST('["sa"]' AS JSON))
json_array_append(notes, '$' , '["sa"]' )
json_array_append(notes, '$' , CAST('["sa"]' AS JSON))
json_array_append(notes, '$' , '["sa"]' )
改為json_array_append(notes, '$' , CAST('["sa"]' AS JSON))