cc :
- CREATE TABLE[rmc_relevancy](
- [ID] integer identity(1,1) not null CONSTRAINT [PK_rmc_relevancy] PRIMARY KEY, --代码,唯一,主键
- [period] varchar(8) not null, --区间
- [rmid] int NULL, --原材料消耗表代码
- [iid] int NULL --invoiceitem表代码
- );
说明:
此表用于记录原材料消耗表[rawmaterialconsumption]与发票表[invoice]关系。
文档中心