📌  相关文章
📜  将 postgres 表从一个模式复制到另一个模式 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:04:51.929000             🧑  作者: Mango

代码示例1
create table schema2.the_table (like schema1.the_table including all);
insert into schema2.the_table
select * 
from schema1.the_table;