Mysql中Books数据库的表格及结构、记录信息汇总表 | ||||
customers(顾客信息表) |
customerid:顾客号,name:顾客姓名,address:住址,city:所在城市 |
|||
1 | ![]() |
![]() |
||
orders(定单表) |
orderid:定单号,customerid:顾客号,amount:定单金额,date:定单日期。 | |||
2 | ![]() |
![]() |
||
books(书目表) |
isbn:书号,author:作者,title:标题,price:单价。 | |||
3 | ![]() |
![]() |
||
orders_items(定单项目表) |
orderid:定单号,isbn:书号,quantity:书目数量。 | |||
4 | ![]() |
![]() |
||
book_reviews(书目反馈信息表) |
isbn:书号,review:反馈信息内容。 | |||
5 | ![]() |
![]() |
||