删除PostgreSQL临时表

如果在A5 Mk2中执行虚拟命令失败,临时表还会残留下来,非常烦人。

请使用以下命令进行删除。

drop table if exists "$$sample_table" cascade;

样本表的位置是可变的。

如果要指定模式名称,请使用以下方法。

drop table if exists スキーマ名."$$sample_table" cascade;
bannerAds