H
haicai
Unregistered / Unconfirmed
GUEST, unregistred user!
access中,用SQL创建数据库表,其中money字段非空并且默认值为0,请问SQl语句怎么写?
我是这样写的
Sql.Add('Create table TableName);
Sql.Add('BillNo varchar(14) null,');
Sql.Add('ConsumeTotal money not null default(0),');
Sql.Add('PayTotal money not null default(0),');
ExecSql;
编译提示错误.我把default(0)去掉就没有错误.
我是这样写的
Sql.Add('Create table TableName);
Sql.Add('BillNo varchar(14) null,');
Sql.Add('ConsumeTotal money not null default(0),');
Sql.Add('PayTotal money not null default(0),');
ExecSql;
编译提示错误.我把default(0)去掉就没有错误.