Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个每天从 psql 查询生成的 csv 文件。现在该文件每天都会自行覆盖,因为我无法弄清楚如何将日期戳放入文件名中。该函数目前看起来像这样:
\COPY(QUERY) TO 'FILEPATH\FILENAME_%datesamp%.csv' WITH CSV DELIMITER ',' HEADER;
我已经尝试了几件事,但它们都只是作为文件名中的文本返回。有谁知道如何以这种方式将日期戳放入文件名中?