问题 更新时间2023/4/3 12:59:00 发行记录(记录号,书号,客户,数量,折扣率,金额),其中记录号为顺序编号,且唯一,书号、数量和金额不为空。 答案 登录 注册 Create table pubRecord( Sequence char(20) primary key, Isdn char(30) not null, Customer char(30), Discount number(5,2), Quantity integer not null, Amount number(8,2) not null, Foreign key isdn references books(isdn)) 出自:江开 >> 湖南大学-计算机科学与技术