陈行远 :
CREATE TABLE[sharedetail](
[ID] COUNTER not null CONSTRAINT [PK_sharedetail] PRIMARY KEY, --id
[GoodsID] TEXT(50) null, --完工货品代码
[GoodsIDamount] INTEGER null, --完工货品数量
[Goods_src] text(20) null, --材料代码
[Goods_srcamount] CURRENCY null, --材料数量
[ACID] TEXT(50) null, --费用
[ACost] CURRENCY null, --成本
[period] text(8) not null, --区间
[S1] text(20) null,
[S2] text(100) null,
[S3] text(200) null,
[I1] INTEGER null,
[I2] INTEGER null,
[I3] INTEGER null
);
文档中心