数据库字段值递增 方法一:建立个sequence
create table postino( code number primary key not null)select * from postinoinsert into postino(code) values(20)update postino set code=code+1