📜  创建重复表 postgres - SQL 代码示例

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

代码示例1
create table dupe_users as (select * from users);

-- The `with no data` here means structure only, no actual rows
create table dupe_users as (select * from users) with no data;