MySQL中json字符串的操作
mysql5.7以上版本都支持json字符串的相关操作,需要注意的是:
- MySQL中的json数据只能够以json字符串的形式存入,不能以json对象存入;
- mysql表中需要保证存储json数据的列类型为blob;
- 在使用mysql的相关操作时应该注意将数据处理成相应的格式,同时直接取出时也是json字符串
-
insert yh_friendlists(user_id,friendlist,count) values (80,'{"City": "Galle", }',1)
-
update操作:不能像原数据一样使用‘+’来连接字符串
json_array_append(),json_array_insert(),
json_set(),json_merge(column,key-value),json_replace()
//json_array_append(column,key,value)函数:直接在定位元素的后面添加 update yh_friendlists set friendlist=json_array_append(City,'$."shanghai"',4) where id=6; //json_array_insert()函数:在指定位置插入元素 update yh_friendlists set friendlist=json_array_insert(City,'$."shanghai"[0]',4) where id=6; //json_set():直接设定某值 update yh_friendlists set friendlist=json_set(City,'$."shanghai"',4) where id=6; //json_merge(column,key-value)函数:向json类型字段中添加元素 update yh_friendlists set friendlist=json_merge(City,'{"提示":"this is a test"}') where id=6; //json_replace()函数 update yh_friendlists set friendlist=json_replace(City,'$."提示"','this is another test') where id=6;
-
select操作:json_extract(),json_keys()
//对于JSON数据的选择有一个重要的函数——json_extract() //选择“城市”对应的值 select json_extract(info,"$.shanghai") from friendlists where id='131141' //选择“城市”对应的值 select info->"$.shanghai" from friendlists where id='131141' //用json_keys()函数选择所有的键值 select json_keys(City) from friendlists
-
where操作:json_contains(column,elem,key);json_search()函数;直接利用键值进行选择
//json_contains(column,elem,key)函数判断包含带有elem元素的key的column属性是否存在 //注意中间elem(95)一定要用字符串形式表示 select * from friendlists where json_contains(City,'90','$.shanghai') //json_search()函数:直接对“值”(且值必须是字符串,数列或者键值对都不行)或数列中的元素操作 //json_search的第二个参数one表示找一个,all表示找到所有 select * from friendlist where json_search(City,'one',"%及格") is not null; //直接利用键值进行选择 select * from jwc where info->'$.shanghai[0]'>90;
-
insert操作:和其他类型数据的操作是类似的