问题 更新时间2023/4/3 12:59:00 图书目录(书号,书名,作者,出版社编号,价格,出版日期),每本书的书号是唯一的,且书名、出版社编号、价格、出版日期均不为空且所有图书价格均不超过200元。 答案 登录 注册 Create table books( Isdn char(30) primary key, Title char(20) not null, Author char(20), Price number(6,2) not null, Pub_date datetime not null, Pub_id char(10), Check (price>0 and price<200), Foreign key pub_id references publisher(id)) 出自:江开 >> 湖南大学-计算机科学与技术