通过DBeaver 给Postgre SQL表 设置主键自增

1.创建表

CREATE TABLE public.company (

id int4 NOT NULL ,

name text NOT NULL,

age int4 NOT NULL,

address bpchar(50) NULL,

salary float4 NULL,

join_date date NULL,

CONSTRAINT company_pkey PRIMARY KEY (id)

);

2.插入数据(不传入id)

INSERT INTO public.company

(name, age, address, salary, join_date)

VALUES('Kobe', 20, 'Lake', 10000, '1996-07-13');

通过DBeaver 给Postgre SQL表 设置主键自增_第1张图片

 3.由于主键id没有实现自增,所以出现上面错误。

4.新建序列: id-increase。postgresql中的通过序列,可以实现mysql中主键自增的效果。

通过DBeaver 给Postgre SQL表 设置主键自增_第2张图片

 5.将新建序列id-increase应用到company表的id主键上。nextval('"id-increase"'::regclass)

通过DBeaver 给Postgre SQL表 设置主键自增_第3张图片

6.再次执行插入语句,数据插入成功。

通过DBeaver 给Postgre SQL表 设置主键自增_第4张图片 

 

你可能感兴趣的:(sql,数据库,java)