搜题
王老师:19139051760(拨打)
题目  更新时间:2023/4/3

图书目录(书号,书名,作者,出版社编号,价格,出版日期),每本书的书号是唯一的,且书名、出版社编号、价格、出版日期均不为空且所有图书价格均不超过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))
王老师:19139051760(拨打)