首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

数据库字段值递加

2012-09-24 
数据库字段值递增方法一:建立个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 

热点排行