数据库字段值递增
方法一:建立个sequence
create table postino( code number primary key not null)select * from postinoinsert into postino(code) values(20)update postino set code=code+1
发布时间: 2012-09-24 13:49:41 作者: rapoo
数据库字段值递增
方法一:建立个sequence
create table postino( code number primary key not null)select * from postinoinsert into postino(code) values(20)update postino set code=code+1