Javascript

MySQL5.7更新json类型字段中的某个key的值 函数json_replace()

本文主要是介绍MySQL5.7更新json类型字段中的某个key的值 函数json_replace(),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
UPDATE statement SET detail=json_replace(detail, '$.jszq', "2021年07月31日") 
SELECT * from statement 
where generator_id in (SELECT generator_id from generator_sn where generator_sn in (
'1383203822',
'1383280023',
'1384261807',
'1385155053',
'1385157192',
'1385463451'
));

 

 

官方文档:https://dev.mysql.com/doc/refman/5.7/en/json.html#json-paths

这篇关于MySQL5.7更新json类型字段中的某个key的值 函数json_replace()的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!