我有一个 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 的正确语法是什么?
我有一个 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 的正确语法是什么?