我构建了下表(它将昨天的8位数日期添加到某些文本中):
create table DayBefore as select (current_date -interval '1 Days')::timestamp::text;
update daybefore set text = substr (text, 1, 10);
update daybefore set text = replace (text, '-', '');
update daybefore set text = 'MyFile_'||text;
我能做到:
select * from daybefore;
text
---------------------------------
MyFile_20170126
(1 row)
您了解如果相关脚本每天运行,此结果条目也会每天更改。
我的问题是:我现在如何在以下命令中引用 表 MyFile_20170126
,即
select * from 'MyFile_????????'
或create table my_table as select * from MyFile_????????
现在对此喋喋不休,我无法从8.2升级PostgreSQL的版本:-s
任何帮助都非常感谢......!