与mysql不同的是postgre自增id需要先创建一个sequence CREATE SEQUENCE test_id START 10; 然后给id设置默认值 DEFAULT nextval('test_id'::regclass)