更多相关内容...>>Oracle,sqlserver,mysql的自增变量设置
Oracle,sqlserver,mysql的自增变量设置
不同的东家养不同的女儿,这三种数据库在设置自增变量方面都是不同的,下面我归类了一下:
kDu41t http://blog.numino.net/
一、Mysql。它的自增变量个人有认为是最好记的,使用AUTO_INCREMENT关键字,知道英文的就更好记忆了,如下创建一个带有自增变理的表:
qs1Atb http://blog.numino.net/
create table test(id int AUTO_INCREMENT primary key not null,name varchar(50));
grnl04 http://blog.numino.net/
注:这里的id一定要申明为主键,否则会引来报错。
PqzBMJ http://blog.numino.net/

xU8xZd http://blog.numino.net/
二、Sqlserver使用identity关键字,可以很容易指定从什么数开始,增幅是多少,如下:
LuQ3TK http://blog.numino.net/
create table test(id int identity(100,10) primary key not null,name varchar(50));
KDf6Lx http://blog.numino.net/
三、Oracle不能够在创建表的时候指定自动关键字,它需要重新创建sequence,然后以"创建键.nextval"来引用:
T1iO6o http://blog.numino.net/
1.create table test(id int primary key not null,name varchar(50));
xgc3X8 http://blog.numino.net/
2.create sequence test_id(最好是表名+序列号标记) increment by 1 start with 1 maxvalue 9999;
0OjVYZ http://blog.numino.net/
引用的时候就要这样引用了,如下:
69H0ej http://blog.numino.net/
insert into test(test_id.nextval,'www');
更多相关内容...>>Oracle,sqlserver,mysql的自增变量设置

Bug报告 |  免责声明 |  联系我们 |  加入收藏

Copyright © 2006 NuminoStudio(www.numino.net) All Rights Reserved