日期:2014-05-18  浏览次数:20448 次

access数据库表创建问题
谁能写一个access表创建的完整版

create table test(
 id decimal(10, 0) primary key,
 name varchar(30) not null,
 age decimal(10, 0) not null default 20,
 height decimal(10, 2) not null,
)
转化为access表的语句
1、要有精度
2、要有默认值

------解决方案--------------------
探讨
谁能写一个access表创建的完整版

create table test(
id decimal(10, 0) primary key,
name varchar(30) not null,
age decimal(10, 0) not null default 20,
height decimal(10, 2) not null,
)
转化为access表的语句
1……


------解决方案--------------------
探讨
谁能写一个access表创建的完整版

create table test(
id decimal(10, 0) primary key,
name varchar(30) not null,
age decimal(10, 0) not null default 20,
height decimal(10, 2) not null,
)
转化为access表的语句
1……

------解决方案--------------------
这个也搞定了~~继续结贴吧~~