数据库

来源:互联网 发布:网络报警中心 编辑:程序博客网 时间:2024/06/18 18:48

--自动增长
SELECT IDENTITY(INT,1,1) as seq,field1,field2,...,fieldn INTO tmpTableName FROM srcTableName;   ---identity(int,1,1) 

select newid()

Oracle,SQLServer,MySQL的自增变量设置

 

  1、MySQL的自增变量是比较好记的,使用AUTO_INCREMENT关键字,如果知道英文的就容易记忆了,如下创建一个带有自增变理的表:

  create table test(id int AUTO_INCREMENT

  primary key not null,name varchar(50));

  注释:此处的id一定要申明为主键,否则会报错。

  2、SQl Server使用identity关键字,可以很容易指定从什么数开始,增幅是多少,如下:

  create table test(id int identity(100,10)

  primary key not null,name varchar(50));

  3、Oracle不能够在创建表的时候指定自动关键字,它需要重新创建sequence,然后以"创建键。nextval"来引用:

  create table test(id int primary key

  not null,name varchar(50));

  create sequence test_id(最好是表名+序列号标记)

  increment by 1 start with 1 maxvalue 9999;

  引用如下:

  insert into test(test_id.nextval,'www');

 

 

原创粉丝点击