非常急,300分,会就很简单,关于用sql建access建表(300分)

  • 主题发起人 主题发起人 knightlzf
  • 开始时间 开始时间
K

knightlzf

Unregistered / Unconfirmed
GUEST, unregistred user!
现在移动要用sql建表,表中有一个id是自动增加的,现在不知道自动增加怎么写
create table name (id int AUTO_INCREMENT not null,name char(32),primary key (id))
这样写不知道为什么不行
 
Access能不能支持id自动增加???不自动 增加也行啊,自己维护。
 
CREATE TABLE orders(
id numeric(18, 0) IDENTITY (1, 1) NOT NULL )
这是Sql server的语法 。
 
to yeath
这样也不行呀
 
create table test
(
id numeric(8,0) identity(1,1) primary key
)
 
Access有一个自动编号字段类型。选 这个就可以了[:D]
 
这样也不行
create table test(id numeric(8,0))
 
一定要用sql建
 
。。。。。。
 
这样就可以了
create table list(id autoincrement not null, name char(250))
 
类型AutoNumber
 
create table list(id counter not null, name char(250)) 也可以
 
在SQL Server中建个这样的表,然后查看它的语法。[:D]
 
我以前是这样用的:

CREATE TABLE cpml (
编号 identity(1,1),
单位 Text(15),
名称 Text(40)
)
在Access 2000下,用ADO建的。
 
解决了? 解决了就收贴。
 
用 autoincrement 也可,但好像在低版本的Access中不支持。
 
多人接受答案了。
 
create table test(id numeric(8,3))这个在access2000中是错误的,不知道有我试过没有
 
后退
顶部