我试图在" my_file"中复制一行。表格如下:
insert into my_file (
file_name,
file_content
) select
file_name,
file_content
from my_file
where file_name = 'zzz'
file_content列是一个oid,因此包含对实际文件内容的引用。以上副本只是复制引用。在这种情况下如何生成file_content的新值?
THX。