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

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

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