数据库字段值递加

数据库字段值递增方法一:建立个sequencecreate table postino(code number primary key not null)select *

数据库字段值递增
方法一:建立个sequence

create table postino(    code number primary key not null)select * from postinoinsert into postino(code) values(20)update postino set code=code+1