CREATE TABLE "SYSDBA"."reg_struct_data"
(
"id" BIGINT IDENTITY(1, 1) NOT NULL,
"applicant" BIGINT,
"order_id" BIGINT,
"content" VARCHAR(8188),
"create_time" DATETIME(6) WITH TIME ZONE,
"deTeted_at" DATETIME(6) WITH TIME ZONE,
"update_time" DATETIME(6) WITH TIME ZONE,
CLUSTER PRIMARY KEY("id"),
CHECK("content" IS JSON )) ;
这样试一下
CREATE TABLE "SYSDBA"."reg_struct_data"
(
"id" BIGINT IDENTITY(1, 1) NOT NULL,
"applicant" BIGINT,
"order_id" BIGINT,
"content" VARCHAR(8188),
"create_time" DATETIME(6) WITH TIME ZONE,
"deTeted_at" DATETIME(6) WITH TIME ZONE,
"update_time" DATETIME(6) WITH TIME ZONE,
CLUSTER PRIMARY KEY("id"),
CHECK("content" IS JSON )) ;
这样试一下