customer_order.md 1.0 KB
Newer Older
M
Mars Liu 已提交
1 2
# 客户和订单

M
Mars Liu 已提交
3
Goods 中有客户/订单系统如下:
M
Mars Liu 已提交
4

M
Mars Liu 已提交
5
```mysql
M
Mars Liu 已提交
6 7 8
create table customers
(
    id           serial primary key,
M
Mars Liu 已提交
9 10 11 12
    company_name varchar(256),
    address      varchar(1024),
    city         varchar(256),
    state        varchar(256)
M
Mars Liu 已提交
13 14 15 16 17
);

create table products
(
    id          serial primary key,
M
Mars Liu 已提交
18 19
    description varchar(1024),
    unit_price  decimal(12, 4)
M
Mars Liu 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
);

create table orders
(
    id          serial primary key,
    product_id  integer references products (id),
    order_date  timestamp,
    quantity    integer,
    customer_id integer references customers(id)
);

```

我们希望这个数据库能够允许每个订单包含多种商品,那么应该如何改造?

## 答案

* 添加一个 order_detail 表,引用 order id、product id,增加 quantity 列
* order 表中删除 product id 和 quantity 列

## 选项

### A

将 order 表的修改为以 product id 和 customer id 作为联合主键

### B

删除 orders 表中的 product id 和 quantity 列

### C

在 order 表的主键上加唯一约束