nếu bạn đang sử dụng JSONB
, bạn có thể sử dụng jsonb_set
chức năng
(table
.update()
.values(views=func.jsonb_set(table.c.views,
'{%s}' % '1002',
1))
.where(...))
nếu bạn đang chèn từ cột khác
(table
.update()
.values(views=func.jsonb_set(table.c.views,
'{%s}' % '1002',
other_table.c.other_column.cast(String).cast(JSONB)))
.where(...))