我们如何将外部表从一个模式复制到同一 postgresql 数据库中的另一个模式

how do we copy external tables from one schema to another schema in same postgresql database

我在一个数据库中有两个模式

1) public
2) test

在public中我有外部表的列表,如

ext_table1,ext_table_2,ext_table_3

如何从同一数据库中的 public 复制这些表以测试架构?

如果你想移动它们,那就这样做:

alter table ext_table1 set schema test;