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