如果是MySQL,可以使用AUTO_INCREMENT关键字,表示自增长。比如:create table test( id INT(20) not null AUTO_INCREMENT, primary key (id));如果是oracle,可以使用序列。