Primary Entities: Client Guest Reservation RoomAssignment
I want to implement a multiple room reservation database design. First, I want to explain first the concept:
- The Client is the one who acquires a reservation.
- The Client can only have 1 reservation at a time
- The Client can reserve multiple rooms.
The Guest is the one who is assigned into a specific room.
So for the Table:
Client (client_id(PK), Name)
Guest (guest_id(PK), Name)Reservation (reservation_id(PK), client_id(FK), roomAss_id(FK), checkInDate); RoomAssignment (roomAss_id(PK), guest_id(FK), roomno(FK)); Room(room_id(PK), roomDetails);
//The problem here is that I don't know how to implement a 1 to many relationship. My Reservation should handle mutliple RoomAssignment? Or my RoomAssignment will handle multiple guest_id and roomno and then I will pass 1 roomass_id into my reservation table?
Thanks I am really confused about this 1 to many relationship. I hope somebody is so kind to help instead of giving me negative points. T_T
Another Attempt:
Room(room_id(PK), roomDetails);
Client (client_id(PK), Name)
Guest (guest_id(PK), Name)
Reservation (reservation_id(PK), client_id(FK), checkInDate);
Booking(book_id(PK), reservation_id(FK), room_id(FK));
Lodging(lodge_id(PK), guest_id(FK), book_id(FK))
(Client, Room, Guest are already filled), add Reservation, add Booking, add Lodging
Is This Correct??