在postgres中传播语法JSONB列

时间:2019-03-21 21:37:39

标签: javascript postgresql jsonb spread-syntax

如何在postgres UPDATE中进行传播语法

UPDATE TABLE <table_name> set data={...original, ...<new_data>} where id='<id>'

在postgres

1 个答案:

答案 0 :(得分:0)

其中{“ a”:“ b”}是传播到当前数据中的JSON对象

update <table_name> set data = data || '{"a":"b"}' where id='<id>'