在ASP里 创建表和查询是一样的 主要的是SQL语句要写正确Dim SqlSql= "Create Table aa (id int identity(1,1) primary key, name varchar(50) not null, age int)"Conn.ExeCute(Sql)