1

我有一个 bytea 字段,其中包含我想用 NULL 替换的数据。我尝试了以下语法:

update ir_act_report_xml set report_rml_content_data = E'\\000'::bytea, report_sxw_content_data = E'\\000'::bytea where id = 365;

但它随后返回 00 而不是 NULL。

将 bytea 字段更新为 NULL 的正确语法是什么?

4

1 回答 1

0

只需使用关键字NULL

UPDATE ir_act_report_xml SET
   report_rml_content_data = NULL,
   report_sxw_content_data = NULL
 WHERE id = 365;
于 2013-06-10T14:18:58.203 回答