有的,比如
create table (id int identity(1,1)........)
你应该先查查,剩的问啦。

解决方案 »

  1.   

    企业管理器-->设计表-->选中一int类型字段-->下面有个标识的属性
      

  2.   

    有,在建表的时候,经其字段设置为整型,将种子属性设置为true即可
      

  3.   

    兄弟们,我程序里面动态的增加字段!现要求增加一个自动编号的字段Access数据库这个SQL应怎么写
      

  4.   

    ALTER TABLE 表 ADD 编号1 int identity(1,1) not null
      

  5.   

    Access数据库 <<=====你不是sqlserver吗?
      

  6.   

    使用标识列,关键字:identity
    楼上几位大哥说的都是
    我劝楼主还是先看看help!!
      

  7.   

    有啊
    alter table 表名 add ID int identity(1,1) not null
      

  8.   

    alter table 表名 add ID int identity(1,1) not null可以