<update id="updateNodeInfo">
update tb_xxx
set node = jsonb_concat(node, #{node,typeHandler=com.fly.MapHandler}::jsonb)
where id = #{id}
</update>
其中node字段类型为jsonb,主要使用jsonb_concat函数来实现部分更新
<update id="updateNodeInfo">
update tb_xxx
set node = jsonb_concat(node, #{node,typeHandler=com.fly.MapHandler}::jsonb)
where id = #{id}
</update>
其中node字段类型为jsonb,主要使用jsonb_concat函数来实现部分更新