我的数据库正在使用 PostgreSQL。一张表正在使用serial
自动增量宏。如果我想在表中插入一条记录,我是否还需要指定该值,或者它会自动为我分配?
CREATE TABLE dataset
(
id serial NOT NULL,
age integer NOT NULL,
name character varying(32) NOT NULL,
description text NOT NULL DEFAULT ''::text
CONSTRAINT dataset_pkey PRIMARY KEY (id)
);