यदि आप JSONB
. का उपयोग कर रहे हैं , आप jsonb_set
. का उपयोग कर सकते हैं समारोह
(table
.update()
.values(views=func.jsonb_set(table.c.views,
'{%s}' % '1002',
1))
.where(...))
यदि आप अन्य कॉलम से सम्मिलित कर रहे हैं
(table
.update()
.values(views=func.jsonb_set(table.c.views,
'{%s}' % '1002',
other_table.c.other_column.cast(String).cast(JSONB)))
.where(...))