This document describes a database schema for a hotel booking system containing four tables: Hotel, Room, Booking, and Guest. Hotel stores hotel details with hotel number as the primary key. Room stores room details for each hotel with a composite primary key of room and hotel numbers. Booking stores booking details with a composite primary key of hotel, guest, and check-in dates. Guest stores guest details with guest number as the primary key. Foreign keys enforce relationships between tables.
This document describes a database schema for a hotel booking system containing four tables: Hotel, Room, Booking, and Guest. Hotel stores hotel details with hotel number as the primary key. Room stores room details for each hotel with a composite primary key of room and hotel numbers. Booking stores booking details with a composite primary key of hotel, guest, and check-in dates. Guest stores guest details with guest number as the primary key. Foreign keys enforce relationships between tables.
The following tables form part of a database held in a relational DBMS:
• Hotel (hotelNo, hotelName, city) • Room (roomNo, hotelNo, type, price) • Booking (hotelNo, guestNo, dateFrom, dateTo, roomNo) • Guest (guestNo, guestName, guestAddress) where Hotel contains hotel details and hotelNo is the primary key; Room contains room details for each hotel and (roomNo, hoteINo) forms the primary key; Booking contains details of bookings and (hoteINo, guestNo, dateFrom) forms the primary key; Guest contains guest details and guestNo is the primary key. 1. What is the attributes and degree in this Database, specify domain for each attribute. 2. Identify the foreign keys in this schema. Explain how the entity and referential integrity rules apply to these relations. 3. Suggest some general constraints that would be appropriate for this schema