不包括 Postgres 复制 table 架构 is_null 约束

Postgres copy table schema is_null constraints not included

我有一个带有 ff 列和约束的 table :

create table newtable(
    id int4 not null primary key,
    lastname varchar(50) not null,  
    firstname varchar(50) not null,
    middlename varchar(50) not null
)

我正在开发一个工作流脚本 (KNIME),用于测试从源到目标的架构。 所以我用ff。代码:

CREATE TABLE xtable 
AS TABLE newtable;

当我检查is_null约束时,它被设置为'yes'(但在原来的table中,它被设置为'no')。我如何使用上述代码脚本包含约束?

目前的方法似乎无法实现。我知道的最佳选择是以下查询:

CREATE TABLE xtable (LIKE newtable INCLUDING ALL);

INSERT INTO xtable SELECT * FROM newtable;

您可以阅读此语法 here