-- レコード番号管理 drop table if exists RecordKey cascade; create table RecordKey ( KeyNo decimal(2,0) unsigned not null comment 'キーコード' , RecordNumber decimal(6,0) unsigned not null comment 'レコード番号' , EntryDate datetime not null comment '登録日付' , UpdateDate datetime not null comment '更新日付' , constraint RecordKey_PKC primary key (KeyNo, RecordNumber) ) comment 'レコード番号管理' ; Insert recordkey Value ( 1 , ( SELECT IFNULL(MAX(RecordNumber), 0) From messageboarddata ) , NOW() , NOW() ); commit;