解决数据库关系周期

时间:2019-04-13 09:17:51

标签: database database-design foreign-keys database-relations

在数据库中,我有一个模型: enter image description here

客户可以租车或租车。如您所见,Car具有OwnerID-拥有汽车但同时也可以从其他所有者那里租车的客户,以便在“订单”表中,他显示为“用户”。
那么,如何更改模型以避免此类循环,甚至有可能?

2 个答案:

答案 0 :(得分:1)

考虑识别(存储在表格中)

  • 所有者是谁,他们拥有什么,以及
  • 客户是谁。

create table persons (
  -- I prefer "people". YMMV.
  person_id integer primary key,
  person_name varchar(25) not null
  -- Other columns go here.
);

create table cars (
  -- VIN might be a better choice.
  car_id integer primary key
  -- Other columns go here.
);

create table car_owners (
  -- Only car owners known to us can rent out a car.
  car_id integer not null
    references cars(car_id),
  owner_id integer not null
    references persons (person_id),
  primary key (car_id, owner_id)
  -- Other columns go here.
);

create table customers (
  -- Any person can rent a car. (But some persons are not customers.)
  customer_id integer primary key  
    references persons (person_id)
  -- Other columns go here.
);

create table rentals (
  customer_id integer not null
    references customers (customer_id),
  car_id integer not null,
  owner_id integer not null,
  primary key (customer_id, car_id, owner_id),

  -- Don't rent a car unless we know who the owner is.
  foreign key (car_id, owner_id)                  
    references car_owners (car_id, owner_id)

  -- Other columns go here.
);

答案 1 :(得分:0)

根据我的理解,我认为最好分别为所有者(租车人)和租户(租车人)两个个人资料并分别登录

User      Owner      Tenant     Order
------    ------     -------    -------    
id        owner_id   tenant_id  owner_id 
email     user_id    user_id    tenant_id 
                                car_id

希望这对您有帮助!