Рассмотрите возможность определения (сохранения в таблицах)
- , кто является владельцами и чем они владеют, и
- , кто являются клиентами.
.
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.
);