没有乘客可以在同一天乘坐多辆车
cars
passengers
create table cars( car_id integer generated always as identity
primary key
, vin text unique
, capacity integer not null check (capacity > 0)
--- other car attributes
);
create table passengers( passenger_id integer generated always as identity
primary key
, name text
--- other passenger attributes
) ;
create table ridership( ridership_id integer generated always as identity
primary key
, car_id integer references cars(car_id)
, passenger_id integer references passengers(passenger_id)
, ride_date date not null
, exclude using gist (car_id with =,ride_date with =) -- #1. No car can be booked multiple times on the same day
, exclude using gist (passenger_id with =,ride_date with =) -- #2. No passenger can ride multiple cars on the same day
) ;
涉及涉及跨表的约束的极限例外;没有直接约束并非唯一的索引。我认为,它需要一个扳机。我通常会创建一个演示,但现在被压迫了。我今天晚上创建一个。但是您可能想尝试一下!