postgreSQL 创建表格 使主键id为自增 可添加 serial4 类型
在navicat 直接添加 会出错
添加 serial4 类型即可(建议在创建表时添加比较方便)
DROP TABLE IF EXISTS "public"."message";
CREATE TABLE "public"."message" (
"id" serial4 NOT NULL,
"from_user_id" int4 DEFAULT 0,
"to_user_id" int4 DEFAULT 0,
CONSTRAINT "message_pkey" PRIMARY KEY ("id")
)
;
执行完后的语句变成:
CREATE TABLE "public"."message" (
"id" int4 NOT NULL DEFAULT nextval('message_id_seq'::regclass),
"from_user_id" int4 DEFAULT 0,
"to_user_id" int4 DEFAULT 0,
CONSTRAINT "message_pkey" PRIMARY KEY ("id")
)
;