【发布时间】:2017-09-27 14:37:36
【问题描述】:
我想更新表中包含用户定义类型列的行。 所以,我对此进行了查询:
update test set identifiers = identifiers + {id : 'test1', cat_name : 'test1'} where id = 1;
这是我的表格测试:
CREATE TABLE public.test (
id int PRIMARY KEY,
identifiers frozen<identifier>
)
提前谢谢你
【问题讨论】: