在ACCESS中创建表时,其字段缺省就是允许为空值。
我想你是不是想创建not null的字段。
create table t1(fld1 char, fld2 char not null);
fld2的值就不允许为空值,但可以允许为空字符串。