【发布时间】:2020-04-05 02:06:34
【问题描述】:
尝试使用 || 更新表中的 JSONB 列运算符并使用 now 或 current_timestamp 插入当前时间,但不能。
我的 jsonb_column 结构是
{
"status": "oldStatus",
"statusUpdatedTimestamp": null //this field might be present or not, if it's present it has to be overwritten. if not, it has to be added
}
create or replace function update_jsonb()
returns trigger language plpgsql
as $function$
begin
if (TG_OP = 'UPDATE' and old.jsonb_column ->> 'status' <> new.jsonb_column ->> 'status') then
--need statusUpdatedTimestamp to have the current time
new.jsonb_column = new.jsonb_column || '{"statusUpdatedTimestamp": ' now ' }';
end if;
return new;
end;
$function$ ;
我预期的 jsonb_column 输出是
{
"status": "newStatus",
"statusUpdatedTimestamp": '2019-12-11 10:10:35'
}
【问题讨论】:
标签: json postgresql jsonb postgresql-9.6