I created this table for my database.
CREATE TABLE Reservation ( Reservation_Name SERIAL UNIQUE PRIMARY KEY, User VARCHAR(64) DEFAULT 'Member', FOREIGN KEY(User) REFERENCES User(Email) ON UPDATE CASCADE ON DELETE SET DEFAULT, Location INT, FOREIGN KEY(Location) REFERENCES Place(Id_Location) ON UPDATE CASCADE ON DELETE NO ACTION, Start_Date DATE NOT NULL, Check_In TIME(1) DEFAULT '10:00:00', End_Date DATE NOT NULL, Check_Out TIME(1) DEFAULT '18:00:00', CHECK(Start_Date >= End_Date), Deleted BOOLEAN DEFAULT FALSE ); How can I insert a Check that doesn't allow to add a reservation if there's already another one with the same Start_Date and the same End_Date end the same location?