-- 入金明細データ drop table if exists depositdatadetail cascade; create table depositdatadetail ( ORDERERSDIVISION decimal(5,0) not null comment '発注者区分' , ORDERERSCODE decimal(5,0) not null comment '発注者コード' , TARGETDATE decimal(6,0) not null comment '対象年月' , REQUESTNO decimal(10,0) not null comment '請求No' , ORDERNO decimal(2,0) comment '受付番号' , DEPOSITAMOUNT decimal(10,0) comment '入金金額' , DISCOUNTAMOUNT decimal(10,0) comment '値引き金額' , CNSTRPRICE decimal(10,0) comment '協力金' , FEES decimal(10,0) comment '手数料' , OTHERADJUSTMENTS decimal(10,0) comment 'その他' , DIFFERENCEAMOUNT decimal(10,0) comment '差分' , CONFIRMATIONPERSONCODE decimal(8,0) comment '確認担当者コード' , CONFIRMATIONDATE date comment '担当者確認日付' , CONFIRMATIONENDFLG decimal(1,0) comment '確認完了フラグ' , NOTE varchar(120) comment '備考' , ENTRYDATE datetime comment '登録日付' , UPDATEDATE datetime comment '更新日付' , constraint depositdatadetail_PKC primary key (ORDERERSDIVISION,ORDERERSCODE,TARGETDATE,REQUESTNO) ) comment '入金明細データ' ; DROP TABLE IF EXISTS RequestOrderDate; -- 請求書日付データ CREATE TABLE RequestOrderDate ( ConstructionCode decimal(10,0) unsigned NOT NULL COMMENT '工事コード', InvoiceNo decimal(9,0) NOT NULL COMMENT '請求書No', SendDate date NOT NULL COMMENT '請求書発給郵送日', EntryDate datetime NOT NULL COMMENT '登録日付', UpdateDate datetime NOT NULL COMMENT '更新日付', PRIMARY KEY (ConstructionCode, InvoiceNo) ) COMMENT = '請求書日付データ';