als u JSONB
gebruikt , kunt u de jsonb_set
. gebruiken functie
(table
.update()
.values(views=func.jsonb_set(table.c.views,
'{%s}' % '1002',
1))
.where(...))
als u invoert vanuit een andere kolom
(table
.update()
.values(views=func.jsonb_set(table.c.views,
'{%s}' % '1002',
other_table.c.other_column.cast(String).cast(JSONB)))
.where(...))