解决SQL Server 2008数据库主键自增的问题

时间:2022-03-16 04:56:33

1、原理实现

待补充。

2、设置主键自动增加


MS SQLServer


在MS SQLServer中,如果把表的主键设为identity类型,数据库就会自动为主键赋值。

create table customers(id int identity(1,1) primary key not null, name varchar(15));
insert into customers(name) values('name1'),('name2');
select id from customers;

注意:在sqlserver中字符串用单引号扩起来,而在mysql中可以使用双引号。

查询结果和mysql的一样。

解决SQL Server 2008数据库主键自增的问题

由此可见,一旦把id设为identity类型,MS SQLServer数据库会自动按递增的方式为主键赋值。identity包含两个参数,第一个参数表示起始值,第二个参数表示增量

MySql实现:

在mysql中,如果把表的主键设为auto_increment类型,数据库就会自动为主键赋值。例如:

create table customers(id int auto_increment primary key not null, name varchar(15));
insert into customers(name) values("name1"),("name2");
select id from customers;

以上sql语句先创建了customers表,然后插入两条记录,在插入时仅仅设定了name字段的值。最后查询表中id字段,查询结果为:

解决SQL Server 2008数据库主键自增的问题

由此可见,一旦把id设为auto_increment类型,mysql数据库会自动按递增的方式为主键赋值。


图形化展现方式:


解决SQL Server 2008数据库主键自增的问题


3、从序列中获取自动增长的标识符

在Oracle中,可以为每张表的主键创建一个单独的序列,然后从这个序列中获取自动增加的标识符,把它赋值给主键。例如一下语句创建了一个名为customer_id_seq的序列,这个序列的起始值为1,增量为2。

create sequence customer_id_seq increment by 2 start with 1

一旦定义了customer_id_seq序列,就可以访问序列的curval和nextval属性。

  • curval:返回序列的当前值
  • nextval:先增加序列的值,然后返回序列值

以下sql语句先创建了customers表,然后插入两条记录,在插入时设定了id和name字段的值,其中id字段的值来自于customer_id_seq序列。最后查询customers表中的id字段。

create table customers(id int primary key not null, name varchar(15));
insert into customers values(customer_id_seq.nextval, 'name1');
insert into customers values(customer_id_seq.nextval, 'name2');
select id from customers;

如果在oracle中执行以上语句,查询结果为:

解决SQL Server 2008数据库主键自增的问题

通过触发器自动添加id字段

从上述插入语句可以发现,如果每次都要插入customer_id_seq.nextval的值会非常累赘与麻烦,因此可以考虑使用触发器来完成这一步工作。

创建触发器trg_customers

create or replace
trigger trg_customers before insert on customers for each row
begin
select CUSTOMER_ID_SEQ.nextval into :new.id from dual;
end;

插入一条记录

insert into customers(name) values('test'); 

这是我们会发现这一条记录被插入到数据库中,并且id还是自增长的。

解决SQL Server 2008数据库主键自增的问题


3.2 Java获取数据库自增主键表中插入数据的ID

  1. /** 
  2.  * 自增主键主键插入值后获取自增ID 
  3.  * @param sql 
  4.  * @return 
  5.  */  
  6. public int insertIntoDB(String sql){  
  7.     Connection conn = null;  
  8.     Statement state = null;  
  9.     ResultSet rs = null;  
  10.     int key = -1;  
  11.     try{  
  12.         conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/jx3""root""root");  
  13.         state = conn.createStatement();  
  14.         state.executeUpdate(sql, Statement.RETURN_GENERATED_KEYS);  
  15.         rs = state.getGeneratedKeys();  
  16.         if(rs.next()){  
  17.             key = rs.getInt(1);  
  18.         }  
  19.         return key;  
  20.     }catch (SQLException e) {  
  21.         e.printStackTrace();  
  22.         return key;  
  23.     }finally{  
  24.         try{  
  25.             if(rs != null){  
  26.                 rs.close();  
  27.                 rs = null;  
  28.             }  
  29.             if(state != null){  
  30.                 state.close();  
  31.                 state = null;  
  32.             }  
  33.             if(conn != null){  
  34.                 conn.close();  
  35.                 conn = null;  
  36.             }  
  37.         }catch (SQLException e) {  
  38.             e.printStackTrace();  
  39.         }  
  40.     }  
  41. }

4、问题来了,加入主为1的数据删除后,如何进行插入主键为1的数据呢?

删除数据,重新添加带有显示值的数据


1 delete[xxx].[dbo].[t_test] whereid = 1

插入带有显示值的数据:

1 insertinto  [guagua_new_event_system_test].[dbo].[t_test]values (1,'xiaoming')
数据库提示:

消息 8101,级别 16,状态 1,第 1 行
仅当使用了列列表并且 IDENTITY_INSERT 为 ON 时,才能为表'xxx.dbo.t_test'中的标识列指定显式值。

重新设置INDENTITY_INSERT为ON时,重新重加,sql 语句为:


1 SET IDENTITY_INSERT [xxx].[dbo].[t_test]  ON </span>

1 insertinto  [xxx].[dbo].[t_test] values (1,'xiaoming')</span>
数据库提示:消息 8101,级别 16,状态 1,第 2 行
仅当使用了列列表并且 IDENTITY_INSERT 为 ON 时,才能为表'xxx.dbo.t_test'中的标识列指定显式值。


明明已经设置了INDENTITY_INSERT为ON,但是为什么还是没有添加进去,看了SQL Server 2008的帮助文档,才明白需要制定一一对应的列名在显示插入的时候。所以,正确的Sql 语句为:


123 SET IDENTITY_INSERT [xxx].[dbo].[t_test]  ONinsert into  [xxx].[dbo].[t_test](id ,namevalues (1,'xiaoming')SET IDENTITY_INSERT [xxx].[dbo].[t_test] OFF</span>

只是在显示插入值的时候的时候需要制定列名,同时打开允许显示插入的INDENTITY_INSERT,才能够插入!


主键归零; http://www.open-open.com/lib/view/open1407922298176.html


http://www.cnblogs.com/xwdreamer/archive/2012/06/08/2542277.html

http://blog.csdn.net/zhuyucheng123/article/details/17502007

http://www.2cto.com/database/201406/310640.html