0% found this document useful (0 votes)
18 views

Creation and Insertion of Hotel Management System

The document outlines the structure of a database for a hotel management system, including tables for users, admins, rooms, reservations, payments, and more. Each table is defined with its respective fields and relationships, such as foreign keys linking related data. Additionally, there are sample insertion commands for populating the users table with user data.

Uploaded by

Vishal Rodrigues
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views

Creation and Insertion of Hotel Management System

The document outlines the structure of a database for a hotel management system, including tables for users, admins, rooms, reservations, payments, and more. Each table is defined with its respective fields and relationships, such as foreign keys linking related data. Additionally, there are sample insertion commands for populating the users table with user data.

Uploaded by

Vishal Rodrigues
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 25

-- 1.

Users Table
CREATE TABLE users (
user_id INT PRIMARY KEY,
username VARCHAR(50) NOT NULL,
password VARCHAR(255) NOT NULL,
first_name VARCHAR(100) NOT NULL,
last_name VARCHAR(100) NOT NULL,
email VARCHAR(100) NOT NULL,
phone_number VARCHAR(20),
address VARCHAR(255)
);

-- 2. Admins Table
CREATE TABLE admins (
admin_id INT PRIMARY KEY,
user_id INT,
role VARCHAR(50),
hire_date DATE,
FOREIGN KEY (user_id) REFERENCES users(user_id)
);

-- 3. Rooms Table
CREATE TABLE rooms (
room_id INT PRIMARY KEY,
room_number VARCHAR(10) NOT NULL,
room_type_id INT,
floor INT,
capacity INT,
price_per_night DECIMAL(10, 2),
status VARCHAR(20),
FOREIGN KEY (room_type_id) REFERENCES room_types(room_type_id)
);

-- 4. Room Types Table


CREATE TABLE room_types (
room_type_id INT PRIMARY KEY,
type_name VARCHAR(50),
description TEXT
);

-- 5. Reservations Table
CREATE TABLE reservations (
reservation_id INT PRIMARY KEY,
user_id INT,
room_id INT,
check_in_date DATE,
check_out_date DATE,
amount DECIMAL(10, 2),
status VARCHAR(20),
FOREIGN KEY (user_id) REFERENCES users(user_id),
FOREIGN KEY (room_id) REFERENCES rooms(room_id)
);

-- 6. Room Inventory Table


CREATE TABLE room_inventory (
inventory_id INT PRIMARY KEY,
room_id INT,
quantity_available INT,
quantity_in_use INT,
FOREIGN KEY (room_id) REFERENCES rooms(room_id)
);

-- 7. Employees Table
CREATE TABLE employees (
employee_id INT PRIMARY KEY,
user_id INT,
department_id INT,
position VARCHAR(100),
hire_date DATE,
FOREIGN KEY (user_id) REFERENCES users(user_id),
FOREIGN KEY (department_id) REFERENCES departments(department_id)
);

-- 8. Departments Table
CREATE TABLE departments (
department_id INT PRIMARY KEY,
department_name VARCHAR(100)
);

-- 9. Payments Table
CREATE TABLE payments (
payment_id INT PRIMARY KEY,
reservation_id INT,
amount DECIMAL(10, 2),
payment_date DATE,
payment_method VARCHAR(50),
status VARCHAR(20),
FOREIGN KEY (reservation_id) REFERENCES reservations(reservation_id)
);

-- 10. Invoices Table


CREATE TABLE invoices (
invoice_id INT PRIMARY KEY,
reservation_id INT,
total_amount DECIMAL(10, 2),
issued_date DATE,
due_date DATE,
FOREIGN KEY (reservation_id) REFERENCES reservations(reservation_id)
);

-- 11. Services Table


CREATE TABLE services (
service_id INT PRIMARY KEY,
service_name VARCHAR(100),
description TEXT,
price DECIMAL(10, 2)
);

-- 12. Housekeeping Table


CREATE TABLE housekeeping (
housekeeping_id INT PRIMARY KEY,
room_id INT,
service_id INT,
service_date DATE,
FOREIGN KEY (room_id) REFERENCES rooms(room_id),
FOREIGN KEY (service_id) REFERENCES services(service_id)
);
-- 13. Feedback Table
CREATE TABLE feedback (
feedback_id INT PRIMARY KEY,
reservation_id INT,
rating INT,
comments TEXT,
feedback_date DATE,
FOREIGN KEY (reservation_id) REFERENCES reservations(reservation_id)
);

-- 14. Discounts Table


CREATE TABLE discounts (
discount_id INT PRIMARY KEY,
discount_code VARCHAR(50),
description TEXT,
discount_percentage DECIMAL(5, 2)
);

-- 15. Hotel Policies Table


CREATE TABLE hotel_policies (
policy_id INT PRIMARY KEY,
policy_name VARCHAR(100),
description TEXT
);

insertion of tables

INSERT INTO users (user_id, username, password, first_name, last_name, email,


phone_number, address) VALUES
('U001', 'amitkumar', 'amitpass1', 'Amit', 'Kumar', 'amit.kumar@example.com',
'9876543210', '123, MG Road, Delhi'),
('U002', 'ravisharma', 'ravipass2', 'Ravi', 'Sharma', 'ravi.sharma@example.com',
'9887654321', '456, Ring Road, Mumbai'),
('U003', 'nehaagrawal', 'neha123', 'Neha', 'Agrawal', 'neha.agrawal@example.com',
'9876543211', '789, Park Lane, Bangalore'),
('U004', 'rahulverma', 'rahulpass4', 'Rahul', 'Verma', 'rahul.verma@example.com',
'9898765432', '101, Sea View, Chennai'),
('U005', 'priyashukla', 'priya5678', 'Priya', 'Shukla', 'priya.shukla@example.com',
'9876540987', '112, Coral Street, Kolkata'),
('U006', 'mohitsharma', 'mohitpass6', 'Mohit', 'Sharma',
'mohit.sharma@example.com', '9876548796', '10, Green Park, Delhi'),
('U007', 'sidharthp', 'sid1234', 'Sidharth', 'Patel', 'sidharth.patel@example.com',
'9912345678', '45, Ocean Drive, Goa'),
('U008', 'vikasreddy', 'vikaspass8', 'Vikas', 'Reddy', 'vikas.reddy@example.com',
'9801234567', '15, Red Fort, Delhi'),
('U009', 'manishjain', 'manish901', 'Manish', 'Jain', 'manish.jain@example.com',
'9922334455', '75, Lotus Lane, Bangalore'),
('U010', 'sanjayb', 'sanjaypass10', 'Sanjay', 'Bhat', 'sanjay.bhat@example.com',
'9933445566', '50, Whitefield, Hyderabad'),
('U011', 'sumitkumar', 'sumitpass11', 'Sumit', 'Kumar', 'sumit.kumar@example.com',
'9765432109', '80, Hill Road, Pune'),
('U012', 'kanaksingh', 'kanak1234', 'Kanak', 'Singh', 'kanak.singh@example.com',
'9911223344', '120, High Street, Mumbai'),
('U013', 'ishaagarwal', 'isha8765', 'Isha', 'Agarwal', 'isha.agarwal@example.com',
'9901234678', '140, Beach Road, Chennai'),
('U014', 'gouravgupta', 'gouravpass14', 'Gourav', 'Gupta',
'gourav.gupta@example.com', '9812345678', '200, Garden Lane, Delhi'),
('U015', 'shashimishra', 'shashi123', 'Shashi', 'Mishra',
'shashi.mishra@example.com', '9823445678', '55, Hilltop, Mumbai'),
('U016', 'neelabhi', 'neela567', 'Neelabhi', 'Patel', 'neelabhi.patel@example.com',
'9965432100', '66, Riverside, Ahmedabad'),
('U017', 'parthp', 'parth321', 'Parth', 'Patel', 'parth.patel@example.com',
'9998765432', '44, Palms Road, Surat'),
('U018', 'meghav', 'megha111', 'Megha', 'Verma', 'megha.verma@example.com',
'9801234321', '22, Newtown, Bangalore'),
('U019', 'raghavpandey', 'raghav123', 'Raghav', 'Pandey',
'raghav.pandey@example.com', '9800987654', '11, Shivaji Nagar, Pune'),
('U020', 'sushiljha', 'sushil56', 'Sushil', 'Jha', 'sushil.jha@example.com',
'9898989898', '25, Vikas Nagar, Mumbai'),
('U021', 'tanujbhatt', 'tanujpass21', 'Tanuj', 'Bhatt', 'tanuj.bhatt@example.com',
'9832123456', '120, Sarai, Delhi'),
('U022', 'anshika', 'anshika22', 'Anshika', 'Singh', 'anshika.singh@example.com',
'9654231478', '101, Mahatma Gandhi Road, Jaipur'),
('U023', 'rajbhagat', 'raj456pass', 'Raj', 'Bhagat', 'raj.bhagat@example.com',
'9687654321', '22, Red Fort, Delhi'),
('U024', 'kartiksharma', 'kartikpass24', 'Kartik', 'Sharma',
'kartik.sharma@example.com', '9567876543', '170, Gandhi Nagar, Bangalore'),
('U025', 'pallavisingh', 'pallavi789', 'Pallavi', 'Singh',
'pallavi.singh@example.com', '9800876543', '135, Church Street, Mumbai'),
('U026', 'yashgarg', 'yash123', 'Yash', 'Garg', 'yash.garg@example.com',
'9678456798', '35, Radha Krishna Street, Pune'),
('U027', 'akshaydesai', 'akshay245', 'Akshay', 'Desai', 'akshay.desai@example.com',
'9988776655', '90, Shivaji Nagar, Kolkata'),
('U028', 'sudhakar', 'sudhakar111', 'Sudhakar', 'Reddy',
'sudhakar.reddy@example.com', '9865432122', '55, Lajpat Nagar, Bangalore'),
('U029', 'snehalpatel', 'snehal888', 'Snehal', 'Patel', 'snehal.patel@example.com',
'9832112345', '67, Triveni Road, Delhi'),
('U030', 'pritikamishra', 'priti1234', 'Pritika', 'Mishra',
'pritika.mishra@example.com', '9711223344', '45, Circular Road, Mumbai'),
('U031', 'alokgupta', 'alok4567', 'Alok', 'Gupta', 'alok.gupta@example.com',
'9888776655', '101, Capital Street, Kolkata'),
('U032', 'anujbhaskar', 'anujpass32', 'Anuj', 'Bhaskar',
'anuj.bhaskar@example.com', '9765432111', '80, Raj Nagar, Jaipur'),
('U033', 'pranavpatil', 'pranav33', 'Pranav', 'Patil', 'pranav.patil@example.com',
'9888999888', '150, Almeda Drive, Pune'),
('U034', 'rithvikreddy', 'rithvik123', 'Rithvik', 'Reddy',
'rithvik.reddy@example.com', '9900112233', '12, Rajpath, Delhi'),
('U035', 'tanushk', 'tanush456', 'Tanush', 'Kumar', 'tanush.kumar@example.com',
'9654235098', '200, High Rise, Mumbai'),
('U036', 'akansha', 'akansha765', 'Akansha', 'Singh', 'akansha.singh@example.com',
'9887112233', '120, City Road, Delhi'),
('U037', 'arvindp', 'arvind334', 'Arvind', 'Patel', 'arvind.patel@example.com',
'9876543210', '88, Palace Lane, Chennai'),
('U038', 'rajb', 'raj789', 'Raj', 'Bansal', 'raj.bansal@example.com', '9988776655',
'140, Maheshwari Nagar, Pune'),
('U039', 'kavitas', 'kavita876', 'Kavita', 'Sharma', 'kavita.sharma@example.com',
'9509876543', '60, Juhu, Mumbai'),
('U040', 'pransh', 'pransh123', 'Pransh', 'Chawla', 'pransh.chawla@example.com',
'9665443321', '45, Golf Course Road, Bangalore'),
('U041', 'viren', 'viren567', 'Viren', 'Garg', 'viren.garg@example.com',
'9376543210', '150, Ridge View, Kolkata'),
('U042', 'kanchan', 'kanchan321', 'Kanchan', 'Verma', 'kanchan.verma@example.com',
'9888776432', '22, Rock Street, Delhi'),
('U043', 'riteshrawat', 'ritesh1234', 'Ritesh', 'Rawat',
'ritesh.rawat@example.com', '9856432109', '88, Seaside Avenue, Kolkata'),
('U044', 'sonalmishra', 'sonal9876', 'Sonal', 'Mishra', 'sonal.mishra@example.com',
'9911223333', '100, Park View, Delhi'),
('U045', 'sudhirkumar', 'sudhirkum1', 'Sudhir', 'Kumar',
'sudhir.kumar@example.com', '9922334455', '50, Valley Road, Pune'),
('U046', 'jyotiraghu', 'jyoti123', 'Jyoti', 'Raghu', 'jyoti.raghu@example.com',
'9665432108', '65, Sunrise Lane, Hyderabad'),
('U047', 'rohitdev', 'rohit4567', 'Rohit', 'Dev', 'rohit.dev@example.com',
'9988776654', '90, Palm Road, Jaipur'),
('U048', 'varunaggarwal', 'varun2345', 'Varun', 'Aggarwal',
'varun.aggarwal@example.com', '9532112234', '150, Subhash Nagar, Bangalore'),
('U049', 'neerajb', 'neeraj9876', 'Neeraj', 'Bansal', 'neeraj.bansal@example.com',
'9635472910', '170, Tranquil Street, Delhi'),
('U050', 'meenal', 'meenal765', 'Meenal', 'Kaur', 'meenal.kaur@example.com',
'9765439801', '22, Kavi Nagar, Mumbai'),
('U051', 'sonisharma', 'soni321', 'Soni', 'Sharma', 'soni.sharma@example.com',
'9954321987', '101, North Street, Pune'),
('U052', 'manojp', 'manojpass', 'Manoj', 'Patil', 'manoj.patil@example.com',
'9743217890', '120, Lajpat Nagar, Delhi'),
('U053', 'karanverma', 'karanpass53', 'Karan', 'Verma', 'karan.verma@example.com',
'9832345678', '77, Raghunath Colony, Kolkata'),
('U054', 'sushmitag', 'sushmita22', 'Sushmita', 'Ghosh',
'sushmita.ghosh@example.com', '9932113345', '44, Green Acres, Bangalore'),
('U055', 'shrutiagrawal', 'shruti123', 'Shruti', 'Agrawal',
'shruti.agrawal@example.com', '9978654321', '55, Hilltop Drive, Mumbai'),
('U056', 'atulbansal', 'atulp123', 'Atul', 'Bansal', 'atul.bansal@example.com',
'9964332211', '150, Someshwar Lane, Pune'),
('U057', 'priyanshig', 'priyan234', 'Priyanshi', 'Gupta',
'priyanshi.gupta@example.com', '9811223344', '30, Pearl Street, Chennai'),
('U058', 'abhinavm', 'abhinavm01', 'Abhinav', 'Mishra',
'abhinav.mishra@example.com', '9445678901', '120, Malviya Nagar, Jaipur'),
('U059', 'meher', 'meher123', 'Meher', 'Singh', 'meher.singh@example.com',
'9674219001', '101, Anand Vihar, Delhi'),
('U060', 'sanchit', 'sanchit456', 'Sanchit', 'Sharma',
'sanchit.sharma@example.com', '9582345670', '180, Ashok Nagar, Bangalore'),
('U061', 'kamalkapoor', 'kamal5678', 'Kamal', 'Kapoor', 'kamal.kapoor@example.com',
'9845432102', '67, Victory Street, Mumbai'),
('U062', 'nishantkumar', 'nishant888', 'Nishant', 'Kumar',
'nishant.kumar@example.com', '9754321098', '88, Mahavir Nagar, Pune'),
('U063', 'harshvardhan', 'harsh1234', 'Harsh', 'Vardhan',
'harsh.vardhan@example.com', '9812112233', '140, Kailash Colony, Delhi'),
('U064', 'vijayseth', 'vijay3456', 'Vijay', 'Seth', 'vijay.seth@example.com',
'9642123456', '105, Peachtree Street, Chennai'),
('U065', 'neelamjha', 'neelam567', 'Neelam', 'Jha', 'neelam.jha@example.com',
'9556543210', '50, Sanjay Place, Bangalore'),
('U066', 'hiteshthakur', 'hitesh321', 'Hitesh', 'Thakur',
'hitesh.thakur@example.com', '9611122233', '40, Bannerghatta Road, Hyderabad'),
('U067', 'shivasingh', 'shiva321pass', 'Shiva', 'Singh', 'shiva.singh@example.com',
'9845678901', '34, Freedom Street, Jaipur');
INSERT INTO admins (admin_id, user_id, role, hire_date) VALUES
('A001', 'U001', 'Manager', '2023-01-10'),
('A002', 'U002', 'Front Desk Supervisor', '2023-02-15'),
('A003', 'U003', 'Housekeeping Manager', '2023-03-01'),
('A004', 'U004', 'Customer Service Head', '2023-04-05'),
('A005', 'U005', 'Marketing Head', '2023-05-12'),
('A006', 'U006', 'Finance Manager', '2023-06-07'),
('A007', 'U007', 'HR Head', '2023-07-20'),
('A008', 'U008', 'IT Manager', '2023-08-10'),
('A009', 'U009', 'Front Desk Manager', '2023-09-01'),
('A010', 'U010', 'Operations Head', '2023-10-10'),
('A011', 'U011', 'General Manager', '2023-11-20'),
('A012', 'U012', 'Sales Manager', '2023-12-10'),
('A013', 'U013', 'Guest Relations Manager', '2024-01-15'),
('A014', 'U014', 'Events Coordinator', '2024-02-05'),
('A015', 'U015', 'Facilities Manager', '2024-03-25'),
('A016', 'U016', 'Admin Support Head', '2024-04-20'),
('A017', 'U017', 'Security Manager', '2024-05-15'),
('A018', 'U018', 'Guest Experience Manager', '2024-06-10'),
('A019', 'U019', 'Chef', '2024-07-25'),
('A020', 'U020', 'Food & Beverage Manager', '2024-08-05'),
('A021', 'U021', 'Reservations Manager', '2024-09-15'),
('A022', 'U022', 'Housekeeping Supervisor', '2024-10-20'),
('A023', 'U023', 'Room Service Manager', '2024-11-25'),
('A024', 'U024', 'Hotel Maintenance Head', '2024-12-10'),
('A025', 'U025', 'Public Relations Manager', '2025-01-05'),
('A026', 'U026', 'Catering Head', '2025-02-01'),
('A027', 'U027', 'Guest Services Coordinator', '2025-03-12'),
('A028', 'U028', 'Revenue Manager', '2025-04-10'),
('A029', 'U029', 'Spa Manager', '2025-05-20'),
('A030', 'U030', 'Retail Manager', '2025-06-15'),
('A031', 'U031', 'Operations Manager', '2025-07-07'),
('A032', 'U032', 'Event Planner', '2025-08-01'),
('A033', 'U033', 'IT Support Manager', '2025-09-18'),
('A034', 'U034', 'Security Supervisor', '2025-10-10'),
('A035', 'U035', 'Cleaning Supervisor', '2025-11-12'),
('A036', 'U036', 'Laundry Manager', '2025-12-02'),
('A037', 'U037', 'Marketing Coordinator', '2026-01-10'),
('A038', 'U038', 'Operations Coordinator', '2026-02-15'),
('A039', 'U039', 'Finance Coordinator', '2026-03-01'),
('A040', 'U040', 'Training Manager', '2026-04-20'),
('A041', 'U041', 'Head of Concierge', '2026-05-30'),
('A042', 'U042', 'Guest Relations Coordinator', '2026-06-18'),
('A043', 'U043', 'Security Operations Head', '2026-07-10'),
('A044', 'U044', 'Booking & Reservations Head', '2026-08-05'),
('A045', 'U045', 'VIP Services Coordinator', '2026-09-20'),
('A046', 'U046', 'Room Inventory Manager', '2026-10-15'),
('A047', 'U047', 'Public Relations Head', '2026-11-01'),
('A048', 'U048', 'Guest Experience Head', '2026-12-10'),
('A049', 'U049', 'Finance and Accounting Head', '2027-01-20'),
('A050', 'U050', 'Hotel Revenue Analyst', '2027-02-15'),
('A051', 'U051', 'Maintenance Coordinator', '2027-03-05'),
('A052', 'U052', 'Marketing Analyst', '2027-04-15'),
('A053', 'U053', 'Event Coordinator', '2027-05-25'),
('A054', 'U054', 'Room Operations Supervisor', '2027-06-10'),
('A055', 'U055', 'Head of Housekeeping', '2027-07-15'),
('A056', 'U056', 'Operations Supervisor', '2027-08-05'),
('A057', 'U057', 'Food and Beverage Coordinator', '2027-09-01'),
('A058', 'U058', 'Service Quality Manager', '2027-10-15'),
('A059', 'U059', 'HR Coordinator', '2027-11-05'),
('A060', 'U060', 'Business Development Manager', '2027-12-20'),
('A061', 'U061', 'Concierge Supervisor', '2028-01-15'),
('A062', 'U062', 'Front Desk Coordinator', '2028-02-10'),
('A063', 'U063', 'Room Supervisor', '2028-03-12'),
('A064', 'U064', 'Accounting Coordinator', '2028-04-25'),
('A065', 'U065', 'Employee Relations Head', '2028-05-30'),
('A066', 'U066', 'Technology Manager', '2028-06-10'),
('A067', 'U067', 'Security Head', '2028-07-15');
INSERT INTO rooms (room_id, room_number, room_type_id, floor, capacity,
price_per_night, status) VALUES
('R001', '101', 'RT01', 1, 1, 3000, 'Available'),
('R002', '102', 'RT02', 1, 2, 4500, 'Available'),
('R003', '103', 'RT03', 1, 2, 3500, 'Occupied'),
('R004', '104', 'RT04', 1, 1, 2500, 'Available'),
('R005', '105', 'RT05', 1, 2, 3100, 'Available'),
('R006', '106', 'RT06', 1, 3, 4600, 'Available'),
('R007', '107', 'RT07', 1, 2, 3500, 'Occupied'),
('R008', '108', 'RT08', 1, 1, 5500, 'Available'),
('R009', '201', 'RT09', 2, 2, 4200, 'Available'),
('R010', '202', 'RT10', 2, 1, 2800, 'Available'),
('R011', '203', 'RT11', 2, 2, 3900, 'Occupied'),
('R012', '204', 'RT12', 2, 1, 3000, 'Available'),
('R013', '205', 'RT13', 2, 2, 3200, 'Available'),
('R014', '206', 'RT14', 2, 2, 3500, 'Occupied'),
('R015', '207', 'RT15', 2, 3, 4700, 'Available'),
('R016', '208', 'RT16', 2, 2, 3800, 'Available'),
('R017', '301', 'RT17', 3, 2, 3400, 'Available'),
('R018', '302', 'RT18', 3, 1, 3800, 'Available'),
('R019', '303', 'RT19', 3, 2, 5500, 'Occupied'),
('R020', '304', 'RT20', 3, 1, 6000, 'Available'),
('R021', '305', 'RT01', 3, 2, 3200, 'Available'),
('R022', '306', 'RT02', 3, 2, 4200, 'Available'),
('R023', '307', 'RT03', 3, 2, 3600, 'Occupied'),
('R024', '308', 'RT04', 3, 1, 2800, 'Occupied'),
('R025', '401', 'RT05', 4, 2, 3500, 'Available'),
('R026', '402', 'RT06', 4, 3, 4600, 'Available'),
('R027', '403', 'RT07', 4, 2, 3900, 'Occupied'),
('R028', '404', 'RT08', 4, 1, 5500, 'Available'),
('R029', '405', 'RT09', 4, 2, 4200, 'Available'),
('R030', '406', 'RT10', 4, 1, 2800, 'Occupied'),
('R031', '407', 'RT11', 4, 2, 4300, 'Available'),
('R032', '408', 'RT12', 4, 1, 3000, 'Available'),
('R033', '501', 'RT13', 5, 2, 3200, 'Occupied'),
('R034', '502', 'RT14', 5, 2, 3500, 'Available'),
('R035', '503', 'RT15', 5, 3, 4700, 'Occupied'),
('R036', '504', 'RT16', 5, 2, 3800, 'Available'),
('R037', '505', 'RT17', 5, 2, 3400, 'Available'),
('R038', '506', 'RT18', 5, 1, 3800, 'Occupied'),
('R039', '507', 'RT19', 5, 2, 5500, 'Available'),
('R040', '508', 'RT20', 5, 1, 6000, 'Occupied'),
('R041', '601', 'RT01', 6, 2, 3200, 'Available'),
('R042', '602', 'RT02', 6, 1, 4200, 'Available'),
('R043', '603', 'RT03', 6, 2, 3600, 'Occupied'),
('R044', '604', 'RT04', 6, 1, 2800, 'Available'),
('R045', '605', 'RT05', 6, 2, 3500, 'Occupied'),
('R046', '606', 'RT06', 6, 3, 4600, 'Available'),
('R047', '607', 'RT07', 6, 2, 3900, 'Available'),
('R048', '608', 'RT08', 6, 1, 5500, 'Occupied'),
('R049', '701', 'RT09', 7, 2, 4200, 'Available'),
('R050', '702', 'RT10', 7, 1, 2800, 'Available'),
('R051', '703', 'RT11', 7, 2, 4300, 'Occupied'),
('R052', '704', 'RT12', 7, 1, 3000, 'Available'),
('R053', '705', 'RT13', 7, 2, 3200, 'Available'),
('R054', '706', 'RT14', 7, 2, 3500, 'Occupied'),
('R055', '707', 'RT15', 7, 3, 4700, 'Available'),
('R056', '708', 'RT16', 7, 2, 3800, 'Available'),
('R057', '801', 'RT17', 8, 2, 3400, 'Available'),
('R058', '802', 'RT18', 8, 1, 3800, 'Occupied'),
('R059', '803', 'RT19', 8, 2, 5500, 'Available'),
('R060', '804', 'RT20', 8, 1, 6000, 'Occupied'),
('R061', '805', 'RT01', 8, 2, 3200, 'Available'),
('R062', '806', 'RT02', 8, 1, 4200, 'Occupied'),
('R063', '807', 'RT03', 8, 2, 3600, 'Available'),
('R064', '808', 'RT04', 8, 1, 2800, 'Available'),
('R065', '901', 'RT05', 9, 2, 3500, 'Occupied'),
('R066', '902', 'RT06', 9, 3, 4600, 'Available'),
('R067', '903', 'RT07', 9, 2, 3900, 'Available');
INSERT INTO room_types (room_type_id, type_name, description) VALUES
('RT01', 'Single Room', 'A room with a single bed, suitable for one person.'),
('RT02', 'Double Room', 'A room with a double bed, suitable for two people.'),
('RT03', 'Deluxe Room', 'A spacious room with a king-sized bed, suitable for up to
two people, with additional amenities.'),
('RT04', 'Suite', 'A luxurious room with separate living and sleeping areas,
suitable for up to four people.'),
('RT05', 'Twin Room', 'A room with two separate single beds, suitable for two
people.'),
('RT06', 'Family Room', 'A large room with multiple beds, suitable for families.'),
('RT07', 'Executive Room', 'A room with enhanced services and amenities, suitable
for business travelers.'),
('RT08', 'Presidential Suite', 'A luxurious suite with a separate living area,
bedroom, and a private office space, suitable for VIPs.'),
('RT09', 'Penthouse', 'A high-end room at the top floor with a large terrace and
panoramic views of the city.'),
('RT10', 'Standard Room', 'A basic room with necessary amenities, suitable for
short stays.'),
('RT11', 'Premium Room', 'A room with premium amenities, suitable for both business
and leisure travelers.'),
('RT12', 'Honeymoon Suite', 'A romantic suite designed for newlyweds, with a king-
sized bed and luxurious amenities.'),
('RT13', 'Accessible Room', 'A room designed to accommodate people with
disabilities, with features like wider doors and handrails.'),
('RT14', 'Garden View Room', 'A room with views of the hotel garden, offering a
relaxing atmosphere.'),
('RT15', 'Sea View Room', 'A room with stunning views of the sea, providing a
serene environment.'),
('RT16', 'Mountain View Room', 'A room offering scenic views of the mountains,
perfect for nature lovers.'),
('RT17', 'Poolside Room', 'A room located near the hotel’s pool, with easy access
to the poolside area.'),
('RT18', 'Sky Room', 'A room located on the top floor, offering breathtaking views
of the city skyline.'),
('RT19', 'Luxury Suite', 'A spacious suite with high-end furnishings and
personalized services.'),
('RT20', 'King Suite', 'A suite with a king-sized bed, living space, and premium
amenities for a luxury experience.');

INSERT INTO reservations (reservation_id, user_id, room_id, check_in_date,


check_out_date, amount, status) VALUES
('RSV001', 'U001', 'R001', '2025-03-01', '2025-03-05', 12000, 'Confirmed'),
('RSV002', 'U002', 'R002', '2025-03-02', '2025-03-06', 18000, 'Confirmed'),
('RSV003', 'U003', 'R003', '2025-03-03', '2025-03-07', 14000, 'Confirmed'),
('RSV004', 'U004', 'R004', '2025-03-04', '2025-03-08', 10000, 'Completed'),
('RSV005', 'U005', 'R005', '2025-03-05', '2025-03-09', 15000, 'Canceled'),
('RSV006', 'U006', 'R006', '2025-03-06', '2025-03-10', 21000, 'Confirmed'),
('RSV007', 'U007', 'R007', '2025-03-07', '2025-03-11', 14000, 'Completed'),
('RSV008', 'U008', 'R008', '2025-03-08', '2025-03-12', 22000, 'Confirmed'),
('RSV009', 'U009', 'R009', '2025-03-09', '2025-03-13', 19000, 'Confirmed'),
('RSV010', 'U010', 'R010', '2025-03-10', '2025-03-14', 11200, 'Canceled'),
('RSV011', 'U011', 'R011', '2025-03-11', '2025-03-15', 17400, 'Confirmed'),
('RSV012', 'U012', 'R012', '2025-03-12', '2025-03-16', 13200, 'Confirmed'),
('RSV013', 'U013', 'R013', '2025-03-13', '2025-03-17', 14400, 'Confirmed'),
('RSV014', 'U014', 'R014', '2025-03-14', '2025-03-18', 13600, 'Completed'),
('RSV015', 'U015', 'R015', '2025-03-15', '2025-03-19', 17000, 'Completed'),
('RSV016', 'U016', 'R016', '2025-03-16', '2025-03-20', 16000, 'Confirmed'),
('RSV017', 'U017', 'R017', '2025-03-17', '2025-03-21', 13200, 'Canceled'),
('RSV018', 'U018', 'R018', '2025-03-18', '2025-03-22', 14500, 'Completed'),
('RSV019', 'U019', 'R019', '2025-03-19', '2025-03-23', 18000, 'Confirmed'),
('RSV020', 'U020', 'R020', '2025-03-20', '2025-03-24', 22500, 'Canceled'),
('RSV021', 'U021', 'R021', '2025-03-21', '2025-03-25', 9600, 'Confirmed'),
('RSV022', 'U022', 'R022', '2025-03-22', '2025-03-26', 14400, 'Confirmed'),
('RSV023', 'U023', 'R023', '2025-03-23', '2025-03-27', 16800, 'Confirmed'),
('RSV024', 'U024', 'R024', '2025-03-24', '2025-03-28', 15500, 'Confirmed'),
('RSV025', 'U025', 'R025', '2025-03-25', '2025-03-29', 21000, 'Completed'),
('RSV026', 'U026', 'R026', '2025-03-26', '2025-03-30', 19000, 'Confirmed'),
('RSV027', 'U027', 'R027', '2025-03-27', '2025-03-31', 12800, 'Completed'),
('RSV028', 'U028', 'R028', '2025-03-28', '2025-04-01', 22000, 'Confirmed'),
('RSV029', 'U029', 'R029', '2025-03-29', '2025-04-02', 19500, 'Canceled'),
('RSV030', 'U030', 'R030', '2025-03-30', '2025-04-03', 20200, 'Confirmed'),
('RSV031', 'U031', 'R031', '2025-03-31', '2025-04-04', 24000, 'Canceled'),
('RSV032', 'U032', 'R032', '2025-04-01', '2025-04-05', 16000, 'Completed'),
('RSV033', 'U033', 'R033', '2025-04-02', '2025-04-06', 13000, 'Confirmed'),
('RSV034', 'U034', 'R034', '2025-04-03', '2025-04-07', 11000, 'Confirmed'),
('RSV035', 'U035', 'R035', '2025-04-04', '2025-04-08', 12500, 'Completed'),
('RSV036', 'U036', 'R036', '2025-04-05', '2025-04-09', 16000, 'Confirmed'),
('RSV037', 'U037', 'R037', '2025-04-06', '2025-04-10', 15000, 'Confirmed'),
('RSV038', 'U038', 'R038', '2025-04-07', '2025-04-11', 17000, 'Confirmed'),
('RSV039', 'U039', 'R039', '2025-04-08', '2025-04-12', 14000, 'Completed'),
('RSV040', 'U040', 'R040', '2025-04-09', '2025-04-13', 18000, 'Canceled'),
('RSV041', 'U041', 'R041', '2025-04-10', '2025-04-14', 19500, 'Confirmed'),
('RSV042', 'U042', 'R042', '2025-04-11', '2025-04-15', 15500, 'Confirmed'),
('RSV043', 'U043', 'R043', '2025-04-12', '2025-04-16', 12000, 'Completed'),
('RSV044', 'U044', 'R044', '2025-04-13', '2025-04-17', 14500, 'Confirmed'),
('RSV045', 'U045', 'R045', '2025-04-14', '2025-04-18', 13000, 'Confirmed'),
('RSV046', 'U046', 'R046', '2025-04-15', '2025-04-19', 16000, 'Canceled'),
('RSV047', 'U047', 'R047', '2025-04-16', '2025-04-20', 12000, 'Confirmed'),
('RSV048', 'U048', 'R048', '2025-04-17', '2025-04-21', 20000, 'Completed'),
('RSV049', 'U049', 'R049', '2025-04-18', '2025-04-22', 15500, 'Confirmed'),
('RSV050', 'U050', 'R050', '2025-04-19', '2025-04-23', 17000, 'Canceled'),
('RSV051', 'U051', 'R051', '2025-04-20', '2025-04-24', 21000, 'Confirmed'),
('RSV052', 'U052', 'R052', '2025-04-21', '2025-04-25', 13000, 'Confirmed'),
('RSV053', 'U053', 'R053', '2025-04-22', '2025-04-26', 11500, 'Completed'),
('RSV054', 'U054', 'R054', '2025-04-23', '2025-04-27', 12500, 'Confirmed'),
('RSV055', 'U055', 'R055', '2025-04-24', '2025-04-28', 14000, 'Confirmed'),
('RSV056', 'U056', 'R056', '2025-04-25', '2025-04-29', 15000, 'Completed'),
('RSV057', 'U057', 'R057', '2025-04-26', '2025-04-30', 13000, 'Canceled'),
('RSV058', 'U058', 'R058', '2025-04-27', '2025-05-01', 18000, 'Confirmed'),
('RSV059', 'U059', 'R059', '2025-04-28', '2025-05-02', 16500, 'Completed'),
('RSV060', 'U060', 'R060', '2025-04-29', '2025-05-03', 20000, 'Confirmed'),
('RSV061', 'U061', 'R061', '2025-05-01', '2025-05-05', 25000, 'Canceled'),
('RSV062', 'U062', 'R062', '2025-05-02', '2025-05-06', 16000, 'Confirmed'),
('RSV063', 'U063', 'R063', '2025-05-03', '2025-05-07', 13000, 'Confirmed'),
('RSV064', 'U064', 'R064', '2025-05-04', '2025-05-08', 17000, 'Completed'),
('RSV065', 'U065', 'R065', '2025-05-05', '2025-05-09', 16000, 'Confirmed'),
('RSV066', 'U066', 'R066', '2025-05-06', '2025-05-10', 18000, 'Canceled'),
('RSV067', 'U067', 'R067', '2025-05-07', '2025-05-11', 19000, 'Completed'),
('RSV068', 'U001', 'R001', '2025-05-08', '2025-05-12', 21000, 'Confirmed'),
('RSV069', 'U002', 'R002', '2025-05-09', '2025-05-13', 20000, 'Completed'),
('RSV070', 'U003', 'R003', '2025-05-10', '2025-05-14', 22000, 'Confirmed'),
('RSV071', 'U004', 'R004', '2025-05-11', '2025-05-15', 16000, 'Confirmed'),
('RSV072', 'U005', 'R005', '2025-05-12', '2025-05-16', 18000, 'Completed'),
('RSV073', 'U006', 'R006', '2025-05-13', '2025-05-17', 14000, 'Confirmed'),
('RSV074', 'U007', 'R007', '2025-05-14', '2025-05-18', 21000, 'Canceled'),
('RSV075', 'U008', 'R008', '2025-05-15', '2025-05-19', 15500, 'Confirmed'),
('RSV076', 'U009', 'R009', '2025-05-16', '2025-05-20', 19000, 'Completed'),
('RSV077', 'U010', 'R010', '2025-05-17', '2025-05-21', 15000, 'Confirmed'),
('RSV078', 'U011', 'R011', '2025-05-18', '2025-05-22', 17500, 'Canceled'),
('RSV079', 'U012', 'R012', '2025-05-19', '2025-05-23', 14500, 'Confirmed'),
('RSV080', 'U013', 'R013', '2025-05-20', '2025-05-24', 20000, 'Completed');
('RSV081', 'U014', 'R014', '2025-05-21', '2025-05-25', 21000, 'Confirmed'),
('RSV082', 'U015', 'R015', '2025-05-22', '2025-05-26', 16000, 'Completed'),
('RSV083', 'U016', 'R016', '2025-05-23', '2025-05-27', 17500, 'Confirmed'),
('RSV084', 'U017', 'R017', '2025-05-24', '2025-05-28', 14500, 'Confirmed'),
('RSV085', 'U018', 'R018', '2025-05-25', '2025-05-29', 22000, 'Canceled'),
('RSV086', 'U019', 'R019', '2025-05-26', '2025-05-30', 19500, 'Confirmed'),
('RSV087', 'U020', 'R020', '2025-05-27', '2025-05-31', 16000, 'Completed'),
('RSV088', 'U021', 'R021', '2025-05-28', '2025-06-01', 14000, 'Confirmed'),
('RSV089', 'U022', 'R022', '2025-05-29', '2025-06-02', 21000, 'Confirmed'),
('RSV090', 'U023', 'R023', '2025-05-30', '2025-06-03', 18000, 'Canceled'),
('RSV091', 'U024', 'R024', '2025-05-31', '2025-06-04', 19500, 'Confirmed'),
('RSV092', 'U025', 'R025', '2025-06-01', '2025-06-05', 16000, 'Completed'),
('RSV093', 'U026', 'R026', '2025-06-02', '2025-06-06', 17000, 'Canceled'),
('RSV094', 'U027', 'R027', '2025-06-03', '2025-06-07', 15000, 'Confirmed'),
('RSV095', 'U028', 'R028', '2025-06-04', '2025-06-08', 18000, 'Completed'),
('RSV096', 'U029', 'R029', '2025-06-05', '2025-06-09', 14000, 'Confirmed'),
('RSV097', 'U030', 'R030', '2025-06-06', '2025-06-10', 16500, 'Confirmed'),
('RSV098', 'U031', 'R031', '2025-06-07', '2025-06-11', 15000, 'Completed'),
('RSV099', 'U032', 'R032', '2025-06-08', '2025-06-12', 20000, 'Canceled'),
('RSV100', 'U033', 'R133', '2025-06-09', '2025-06-13', 21000, 'Confirmed');
INSERT INTO room_inventory (inventory_id, room_id, quantity_available,
quantity_in_use) VALUES
('INV001', 'R001', 10, 2),
('INV002', 'R002', 8, 1),
('INV003', 'R003', 5, 1),
('INV004', 'R004', 15, 3),
('INV005', 'R005', 12, 2),
('INV006', 'R006', 7, 0),
('INV007', 'R007', 9, 4),
('INV008', 'R008', 11, 2),
('INV009', 'R009', 13, 2),
('INV010', 'R010', 6, 1),
('INV011', 'R011', 14, 3),
('INV012', 'R012', 10, 0),
('INV013', 'R013', 9, 1),
('INV014', 'R014', 8, 2),
('INV015', 'R015', 16, 3),
('INV016', 'R016', 10, 1),
('INV017', 'R017', 5, 0),
('INV018', 'R018', 13, 4),
('INV019', 'R019', 7, 2),
('INV020', 'R020', 11, 1),
('INV021', 'R021', 10, 1),
('INV022', 'R022', 12, 0),
('INV023', 'R023', 8, 3),
('INV024', 'R024', 14, 2),
('INV025', 'R025', 9, 1),
('INV026', 'R026', 6, 0),
('INV027', 'R027', 13, 4),
('INV028', 'R028', 11, 3),
('INV029', 'R029', 7, 1),
('INV030', 'R030', 12, 2),
('INV031', 'R031', 10, 1),
('INV032', 'R032', 8, 2),
('INV033', 'R033', 15, 4),
('INV034', 'R034', 9, 0),
('INV035', 'R035', 13, 2),
('INV036', 'R036', 10, 3),
('INV037', 'R037', 7, 1),
('INV038', 'R038', 6, 0),
('INV039', 'R039', 12, 2),
('INV040', 'R040', 10, 0),
('INV041', 'R041', 13, 3),
('INV042', 'R042', 8, 1),
('INV043', 'R043', 9, 2),
('INV044', 'R044', 12, 3),
('INV045', 'R045', 10, 1),
('INV046', 'R046', 15, 2),
('INV047', 'R047', 11, 3),
('INV048', 'R048', 9, 0),
('INV049', 'R049', 13, 3),
('INV050', 'R050', 7, 2),
('INV051', 'R051', 8, 1),
('INV052', 'R052', 12, 4),
('INV053', 'R053', 10, 0),
('INV054', 'R054', 9, 2),
('INV055', 'R055', 13, 1),
('INV056', 'R056', 8, 3),
('INV057', 'R057', 15, 4),
('INV058', 'R058', 10, 1),
('INV059', 'R059', 11, 2),
('INV060', 'R060', 14, 0),
('INV061', 'R061', 6, 1),
('INV062', 'R062', 7, 0),
('INV063', 'R063', 13, 3),
('INV064', 'R064', 10, 0),
('INV065', 'R065', 8, 2);
INSERT INTO employees (employee_id, user_id, department_id, position, hire_date)
VALUES
('EMP001', 'U001', 'D001', 'General Manager', '2025-01-01'),
('EMP002', 'U002', 'D002', 'Front Desk Officer', '2025-01-02'),
('EMP003', 'U003', 'D003', 'Room Attendant', '2025-01-03'),
('EMP004', 'U004', 'D004', 'Executive Chef', '2025-01-04'),
('EMP005', 'U005', 'D005', 'Waitstaff', '2025-01-05'),
('EMP006', 'U006', 'D006', 'Sales Manager', '2025-01-06'),
('EMP007', 'U007', 'D007', 'Housekeeping Supervisor', '2025-01-07'),
('EMP008', 'U008', 'D008', 'Kitchen Assistant', '2025-01-08'),
('EMP009', 'U009', 'D009', 'Event Coordinator', '2025-01-09'),
('EMP010', 'U010', 'D010', 'HR Manager', '2025-01-10'),
('EMP011', 'U011', 'D011', 'Public Relations Officer', '2025-01-11'),
('EMP012', 'U012', 'D012', 'Marketing Manager', '2025-01-12'),
('EMP013', 'U013', 'D013', 'IT Support Specialist', '2025-01-13'),
('EMP014', 'U014', 'D014', 'Concierge', '2025-01-14'),
('EMP015', 'U015', 'D015', 'Bar Manager', '2025-01-15'),
('EMP016', 'U016', 'D016', 'Reservation Manager', '2025-01-16'),
('EMP017', 'U017', 'D017', 'Security Supervisor', '2025-01-17'),
('EMP018', 'U018', 'D018', 'Fitness Instructor', '2025-01-18'),
('EMP019', 'U019', 'D019', 'Spa Manager', '2025-01-19'),
('EMP020', 'U020', 'D020', 'Laundry Supervisor', '2025-01-20'),
('EMP021', 'U021', 'D021', 'Maintenance Supervisor', '2025-01-21'),
('EMP022', 'U022', 'D022', 'Room Service Manager', '2025-01-22'),
('EMP023', 'U023', 'D023', 'Banquet Manager', '2025-01-23'),
('EMP024', 'U024', 'D024', 'Executive Assistant', '2025-01-24'),
('EMP025', 'U025', 'D025', 'Chef de Partie', '2025-01-25'),
('EMP026', 'U026', 'D026', 'Waiter', '2025-01-26'),
('EMP027', 'U027', 'D027', 'Housekeeping Attendant', '2025-01-27'),
('EMP028', 'U028', 'D028', 'Bartender', '2025-01-28'),
('EMP029', 'U029', 'D029', 'Steward', '2025-01-29'),
('EMP030', 'U030', 'D030', 'Assistant HR Manager', '2025-01-30'),
('EMP031', 'U031', 'D031', 'Guest Service Executive', '2025-02-01'),
('EMP032', 'U032', 'D032', 'Sales Executive', '2025-02-02'),
('EMP033', 'U033', 'D033', 'Social Media Manager', '2025-02-03'),
('EMP034', 'U034', 'D034', 'Valet', '2025-02-04'),
('EMP035', 'U035', 'D035', 'Cleaning Staff', '2025-02-05'),
('EMP036', 'U036', 'D036', 'Audio/Visual Technician', '2025-02-06'),
('EMP037', 'U037', 'D037', 'Security Officer', '2025-02-07'),
('EMP038', 'U038', 'D038', 'Catering Manager', '2025-02-08'),
('EMP039', 'U039', 'D039', 'Event Planner', '2025-02-09'),
('EMP040', 'U040', 'D040', 'Parking Attendant', '2025-02-10'),
('EMP041', 'U041', 'D041', 'Guest Relations Manager', '2025-02-11'),
('EMP042', 'U042', 'D042', 'Laundry Attendant', '2025-02-12'),
('EMP043', 'U043', 'D043', 'Food & Beverage Supervisor', '2025-02-13'),
('EMP044', 'U044', 'D044', 'Guest Service Officer', '2025-02-14'),
('EMP045', 'U045', 'D045', 'Maintenance Technician', '2025-02-15'),
('EMP046', 'U046', 'D046', 'Spa Therapist', '2025-02-16'),
('EMP047', 'U047', 'D047', 'Kitchen Steward', '2025-02-17'),
('EMP048', 'U048', 'D048', 'Public Relations Coordinator', '2025-02-18'),
('EMP049', 'U049', 'D049', 'Reservation Clerk', '2025-02-19'),
('EMP050', 'U050', 'D050', 'Travel Desk Officer', '2025-02-20'),
('EMP051', 'U051', 'D051', 'Retail Manager', '2025-02-21'),
('EMP052', 'U052', 'D052', 'Housekeeping Supervisor', '2025-02-22'),
('EMP053', 'U053', 'D053', 'Restaurant Manager', '2025-02-23'),
('EMP054', 'U054', 'D054', 'Concierge Supervisor', '2025-02-24'),
('EMP055', 'U055', 'D055', 'Lounge Manager', '2025-02-25'),
('EMP056', 'U056', 'D056', 'Front Desk Manager', '2025-02-26'),
('EMP057', 'U057', 'D057', 'Chef de Cuisine', '2025-02-27'),
('EMP058', 'U058', 'D058', 'Fitness Center Supervisor', '2025-02-28'),
('EMP059', 'U059', 'D059', 'Event Planner', '2025-03-01'),
('EMP060', 'U060', 'D060', 'IT Network Administrator', '2025-03-02'),
('EMP061', 'U061', 'D061', 'Night Manager', '2025-03-03'),
('EMP062', 'U062', 'D062', 'Security Supervisor', '2025-03-04'),
('EMP063', 'U063', 'D063', 'Laundry Staff', '2025-03-05'),
('EMP064', 'U064', 'D064', 'Operations Manager', '2025-03-06'),
('EMP065', 'U065', 'D065', 'Marketing Executive', '2025-03-07'),
('EMP066', 'U066', 'D066', 'Spa Receptionist', '2025-03-08'),
('EMP067', 'U067', 'D067', 'Housekeeping Assistant', '2025-03-09');

INSERT INTO departments (department_id, department_name) VALUES


('D001', 'Management'),
('D002', 'Front Desk'),
('D003', 'Housekeeping'),
('D004', 'Kitchen'),
('D005', 'Food & Beverage'),
('D006', 'Sales'),
('D007', 'Housekeeping'),
('D008', 'Kitchen'),
('D009', 'Events & Banquets'),
('D010', 'Human Resources'),
('D011', 'Public Relations'),
('D012', 'Marketing'),
('D013', 'Information Technology'),
('D014', 'Concierge'),
('D015', 'Bar'),
('D016', 'Reservations'),
('D017', 'Security'),
('D018', 'Fitness & Wellness'),
('D019', 'Spa'),
('D020', 'Laundry'),
('D021', 'Maintenance'),
('D022', 'Room Service'),
('D023', 'Banquet Services'),
('D024', 'Executive Assistance'),
('D025', 'Culinary'),
('D026', 'Waitstaff'),
('D027', 'Housekeeping'),
('D028', 'Bar & Lounge'),
('D029', 'Kitchen Stewarding'),
('D030', 'Human Resources Support'),
('D031', 'Guest Services'),
('D032', 'Sales & Marketing'),
('D033', 'Social Media & Communications'),
('D034', 'Guest Parking'),
('D035', 'Cleaning & Maintenance'),
('D036', 'Audio/Visual Services'),
('D037', 'Security'),
('D038', 'Catering'),
('D039', 'Event Management'),
('D040', 'Guest Parking'),
('D041', 'Guest Relations'),
('D042', 'Laundry Services'),
('D043', 'Food & Beverage Service'),
('D044', 'Guest Services'),
('D045', 'Maintenance'),
('D046', 'Spa Services'),
('D047', 'Kitchen Stewarding'),
('D048', 'Public Relations Coordination'),
('D049', 'Reservation Desk'),
('D050', 'Travel Desk Services'),
('D051', 'Retail Services'),
('D052', 'Housekeeping'),
('D053', 'Restaurant Services'),
('D054', 'Concierge Services'),
('D055', 'Lounge Services'),
('D056', 'Front Desk Management'),
('D057', 'Culinary'),
('D058', 'Fitness Services'),
('D059', 'Event Planning'),
('D060', 'IT Support'),
('D061', 'Night Operations'),
('D062', 'Security Operations'),
('D063', 'Laundry Department'),
('D064', 'Operations Management'),
('D065', 'Marketing and Promotions'),
('D066', 'Spa Reception'),
('D067', 'Assistant Housekeeping');
INSERT INTO payments (payment_id, reservation_id, amount, payment_date,
payment_method, status) VALUES
('PAY001', 'RSV001', 1500.00, '2025-01-01', 'Credit Card', 'Completed'),
('PAY002', 'RSV002', 2200.00, '2025-01-02', 'Debit Card', 'Completed'),
('PAY003', 'RSV003', 1800.00, '2025-01-03', 'Cash', 'Pending'),
('PAY004', 'RSV004', 2000.00, '2025-01-04', 'Credit Card', 'Completed'),
('PAY005', 'RSV005', 2300.00, '2025-01-05', 'Debit Card', 'Completed'),
('PAY006', 'RSV006', 1700.00, '2025-01-06', 'Credit Card', 'Completed'),
('PAY007', 'RSV007', 2500.00, '2025-01-07', 'Cash', 'Completed'),
('PAY008', 'RSV008', 3000.00, '2025-01-08', 'Credit Card', 'Pending'),
('PAY009', 'RSV009', 1900.00, '2025-01-09', 'Debit Card', 'Completed'),
('PAY010', 'RSV010', 2200.00, '2025-01-10', 'Cash', 'Completed'),
('PAY011', 'RSV011', 2100.00, '2025-01-11', 'Credit Card', 'Completed'),
('PAY012', 'RSV012', 2000.00, '2025-01-12', 'Debit Card', 'Pending'),
('PAY013', 'RSV013', 1700.00, '2025-01-13', 'Cash', 'Completed'),
('PAY014', 'RSV014', 2500.00, '2025-01-14', 'Credit Card', 'Completed'),
('PAY015', 'RSV015', 2300.00, '2025-01-15', 'Debit Card', 'Completed'),
('PAY016', 'RSV016', 2700.00, '2025-01-16', 'Cash', 'Pending'),
('PAY017', 'RSV017', 2100.00, '2025-01-17', 'Credit Card', 'Completed'),
('PAY018', 'RSV018', 2000.00, '2025-01-18', 'Debit Card', 'Completed'),
('PAY019', 'RSV019', 2400.00, '2025-01-19', 'Cash', 'Completed'),
('PAY020', 'RSV020', 2300.00, '2025-01-20', 'Credit Card', 'Completed'),
('PAY021', 'RSV021', 2200.00, '2025-01-21', 'Debit Card', 'Completed'),
('PAY022', 'RSV022', 2500.00, '2025-01-22', 'Cash', 'Completed'),
('PAY023', 'RSV023', 2000.00, '2025-01-23', 'Credit Card', 'Pending'),
('PAY024', 'RSV024', 1800.00, '2025-01-24', 'Debit Card', 'Completed'),
('PAY025', 'RSV025', 2200.00, '2025-01-25', 'Cash', 'Completed'),
('PAY026', 'RSV026', 2500.00, '2025-01-26', 'Credit Card', 'Completed'),
('PAY027', 'RSV027', 2400.00, '2025-01-27', 'Debit Card', 'Completed'),
('PAY028', 'RSV028', 2700.00, '2025-01-28', 'Cash', 'Pending'),
('PAY029', 'RSV029', 2000.00, '2025-01-29', 'Credit Card', 'Completed'),
('PAY030', 'RSV030', 2200.00, '2025-01-30', 'Debit Card', 'Completed'),
('PAY031', 'RSV031', 2100.00, '2025-02-01', 'Cash', 'Completed'),
('PAY032', 'RSV032', 2300.00, '2025-02-02', 'Credit Card', 'Completed'),
('PAY033', 'RSV033', 2500.00, '2025-02-03', 'Debit Card', 'Completed'),
('PAY034', 'RSV034', 2400.00, '2025-02-04', 'Cash', 'Completed'),
('PAY035', 'RSV035', 1800.00, '2025-02-05', 'Credit Card', 'Pending'),
('PAY036', 'RSV036', 2200.00, '2025-02-06', 'Debit Card', 'Completed'),
('PAY037', 'RSV037', 2100.00, '2025-02-07', 'Cash', 'Completed'),
('PAY038', 'RSV038', 2300.00, '2025-02-08', 'Credit Card', 'Completed'),
('PAY039', 'RSV039', 2400.00, '2025-02-09', 'Debit Card', 'Pending'),
('PAY040', 'RSV040', 2500.00, '2025-02-10', 'Cash', 'Completed'),
('PAY041', 'RSV041', 2700.00, '2025-02-11', 'Credit Card', 'Completed'),
('PAY042', 'RSV042', 2200.00, '2025-02-12', 'Debit Card', 'Completed'),
('PAY043', 'RSV043', 2000.00, '2025-02-13', 'Cash', 'Completed'),
('PAY044', 'RSV044', 2300.00, '2025-02-14', 'Credit Card', 'Pending'),
('PAY045', 'RSV045', 2500.00, '2025-02-15', 'Debit Card', 'Completed'),
('PAY046', 'RSV046', 2400.00, '2025-02-16', 'Cash', 'Completed'),
('PAY047', 'RSV047', 2000.00, '2025-02-17', 'Credit Card', 'Completed'),
('PAY048', 'RSV048', 2300.00, '2025-02-18', 'Debit Card', 'Completed'),
('PAY049', 'RSV049', 2200.00, '2025-02-19', 'Cash', 'Completed'),
('PAY050', 'RSV050', 2500.00, '2025-02-20', 'Credit Card', 'Completed'),
('PAY051', 'RSV051', 2700.00, '2025-02-21', 'Debit Card', 'Completed'),
('PAY052', 'RSV052', 2400.00, '2025-02-22', 'Cash', 'Completed'),
('PAY053', 'RSV053', 2200.00, '2025-02-23', 'Credit Card', 'Pending'),
('PAY054', 'RSV054', 2300.00, '2025-02-24', 'Debit Card', 'Completed'),
('PAY055', 'RSV055', 2500.00, '2025-02-25', 'Cash', 'Completed'),
('PAY056', 'RSV056', 2400.00, '2025-02-26', 'Credit Card', 'Completed'),
('PAY057', 'RSV057', 2100.00, '2025-02-27', 'Debit Card', 'Completed'),
('PAY058', 'RSV058', 2700.00, '2025-02-28', 'Cash', 'Completed'),
('PAY059', 'RSV059', 2300.00, '2025-03-01', 'Credit Card', 'Pending'),
('PAY060', 'RSV060', 2500.00, '2025-03-02', 'Debit Card', 'Completed'),
('PAY061', 'RSV061', 2400.00, '2025-03-03', 'Cash', 'Completed'),
('PAY062', 'RSV062', 2200.00, '2025-03-04', 'Credit Card', 'Completed'),
('PAY063', 'RSV063', 2000.00, '2025-03-05', 'Debit Card', 'Completed'),
('PAY064', 'RSV064', 2100.00, '2025-03-06', 'Cash', 'Completed'),
('PAY065', 'RSV065', 2300.00, '2025-03-07', 'Credit Card', 'Completed'),
('PAY066', 'RSV066', 2500.00, '2025-03-08', 'Debit Card', 'Completed'),
('PAY067', 'RSV067', 2400.00, '2025-03-09', 'Cash', 'Completed');
INSERT INTO invoices (invoice_id, reservation_id, total_amount, issued_date,
due_date) VALUES
('INV001', 'RSV001', 1500.00, '2025-01-01', '2025-01-10'),
('INV002', 'RSV002', 2200.00, '2025-01-02', '2025-01-11'),
('INV003', 'RSV003', 1800.00, '2025-01-03', '2025-01-12'),
('INV004', 'RSV004', 2000.00, '2025-01-04', '2025-01-13'),
('INV005', 'RSV005', 2300.00, '2025-01-05', '2025-01-14'),
('INV006', 'RSV006', 1700.00, '2025-01-06', '2025-01-15'),
('INV007', 'RSV007', 2500.00, '2025-01-07', '2025-01-16'),
('INV008', 'RSV008', 3000.00, '2025-01-08', '2025-01-17'),
('INV009', 'RSV009', 1900.00, '2025-01-09', '2025-01-18'),
('INV010', 'RSV010', 2200.00, '2025-01-10', '2025-01-19'),
('INV011', 'RSV011', 2100.00, '2025-01-11', '2025-01-20'),
('INV012', 'RSV012', 2000.00, '2025-01-12', '2025-01-21'),
('INV013', 'RSV013', 1700.00, '2025-01-13', '2025-01-22'),
('INV014', 'RSV014', 2500.00, '2025-01-14', '2025-01-23'),
('INV015', 'RSV015', 2300.00, '2025-01-15', '2025-01-24'),
('INV016', 'RSV016', 2700.00, '2025-01-16', '2025-01-25'),
('INV017', 'RSV017', 2100.00, '2025-01-17', '2025-01-26'),
('INV018', 'RSV018', 2000.00, '2025-01-18', '2025-01-27'),
('INV019', 'RSV019', 2400.00, '2025-01-19', '2025-01-28'),
('INV020', 'RSV020', 2300.00, '2025-01-20', '2025-01-29'),
('INV021', 'RSV021', 2200.00, '2025-01-21', '2025-01-30'),
('INV022', 'RSV022', 2500.00, '2025-01-22', '2025-02-01'),
('INV023', 'RSV023', 2000.00, '2025-01-23', '2025-02-02'),
('INV024', 'RSV024', 1800.00, '2025-01-24', '2025-02-03'),
('INV025', 'RSV025', 2200.00, '2025-01-25', '2025-02-04'),
('INV026', 'RSV026', 2500.00, '2025-01-26', '2025-02-05'),
('INV027', 'RSV027', 2400.00, '2025-01-27', '2025-02-06'),
('INV028', 'RSV028', 2700.00, '2025-01-28', '2025-02-07'),
('INV029', 'RSV029', 2000.00, '2025-01-29', '2025-02-08'),
('INV030', 'RSV030', 2200.00, '2025-01-30', '2025-02-09'),
('INV031', 'RSV031', 2100.00, '2025-02-01', '2025-02-10'),
('INV032', 'RSV032', 2300.00, '2025-02-02', '2025-02-11'),
('INV033', 'RSV033', 2500.00, '2025-02-03', '2025-02-12'),
('INV034', 'RSV034', 2400.00, '2025-02-04', '2025-02-13'),
('INV035', 'RSV035', 1800.00, '2025-02-05', '2025-02-14'),
('INV036', 'RSV036', 2200.00, '2025-02-06', '2025-02-15'),
('INV037', 'RSV037', 2100.00, '2025-02-07', '2025-02-16'),
('INV038', 'RSV038', 2300.00, '2025-02-08', '2025-02-17'),
('INV039', 'RSV039', 2400.00, '2025-02-09', '2025-02-18'),
('INV040', 'RSV040', 2500.00, '2025-02-10', '2025-02-19'),
('INV041', 'RSV041', 2700.00, '2025-02-11', '2025-02-20'),
('INV042', 'RSV042', 2200.00, '2025-02-12', '2025-02-21'),
('INV043', 'RSV043', 2000.00, '2025-02-13', '2025-02-22'),
('INV044', 'RSV044', 2300.00, '2025-02-14', '2025-02-23'),
('INV045', 'RSV045', 2500.00, '2025-02-15', '2025-02-24'),
('INV046', 'RSV046', 2400.00, '2025-02-16', '2025-02-25'),
('INV047', 'RSV047', 2000.00, '2025-02-17', '2025-02-26'),
('INV048', 'RSV048', 2300.00, '2025-02-18', '2025-02-27'),
('INV049', 'RSV049', 2200.00, '2025-02-19', '2025-02-28'),
('INV050', 'RSV050', 2500.00, '2025-02-20', '2025-03-01'),
('INV051', 'RSV051', 2700.00, '2025-02-21', '2025-03-02'),
('INV052', 'RSV052', 2400.00, '2025-02-22', '2025-03-03'),
('INV053', 'RSV053', 2200.00, '2025-02-23', '2025-03-04'),
('INV054', 'RSV054', 2300.00, '2025-02-24', '2025-03-05'),
('INV055', 'RSV055', 2500.00, '2025-02-25', '2025-03-06'),
('INV056', 'RSV056', 2400.00, '2025-02-26', '2025-03-07'),
('INV057', 'RSV057', 2100.00, '2025-02-27', '2025-03-08'),
('INV058', 'RSV058', 2700.00, '2025-02-28', '2025-03-09'),
('INV059', 'RSV059', 2300.00, '2025-03-01', '2025-03-10'),
('INV060', 'RSV060', 2500.00, '2025-03-02', '2025-03-11'),
('INV061', 'RSV061', 2400.00, '2025-03-03', '2025-03-12'),
('INV062', 'RSV062', 2200.00, '2025-03-04', '2025-03-13'),
('INV063', 'RSV063', 2000.00, '2025-03-05', '2025-03-14'),
('INV064', 'RSV064', 2100.00, '2025-03-06', '2025-03-15'),
('INV065', 'RSV065', 2300.00, '2025-03-07', '2025-03-16'),
('INV066', 'RSV066', 2500.00, '2025-03-08', '2025-03-17'),
('INV067', 'RSV067', 2400.00, '2025-03-09', '2025-03-18');
INSERT INTO services (service_id, service_name, description, price) VALUES
('SRV001', 'Room Cleaning', 'Daily cleaning of the room including bed-making, floor
cleaning, and bathroom sanitation.', 500.00),
('SRV002', 'Laundry Service', 'Washing, drying, and folding of clothes.', 300.00),
('SRV003', 'Room Service', 'In-room dining service for food and drinks.', 700.00),
('SRV004', 'Spa', 'Massage, sauna, and relaxation treatments.', 1500.00),
('SRV005', 'Airport Shuttle', 'Transportation to and from the airport.', 1000.00),
('SRV006', 'Gym Access', 'Access to the hotel gym for fitness activities.',
400.00),
('SRV007', 'Swimming Pool', 'Access to the outdoor/indoor pool area.', 350.00),
('SRV008', 'Breakfast Buffet', 'Buffet-style breakfast with a variety of options
including continental and Indian dishes.', 600.00),
('SRV009', 'Car Rental', 'Rent a car for personal use, available for 24 hours.',
2000.00),
('SRV010', 'Business Center', 'Access to computers, printers, and other office
amenities.', 500.00),
('SRV011', 'Laundry Dry-Cleaning', 'Dry cleaning services for clothes.', 800.00),
('SRV012', 'Private Dinner', 'Personalized private dining experience in your room
or on a private terrace.', 2500.00),
('SRV013', 'Pet Sitting', 'Professional care for your pets while you are away.',
1200.00),
('SRV014', 'Concierge Service', 'Personalized assistance with booking tours, making
reservations, and other special requests.', 1000.00),
('SRV015', 'Valet Parking', 'Valet service for parking your vehicle upon arrival
and departure.', 500.00),
('SRV016', 'Event Planning', 'Assistance with planning and organizing events,
conferences, or weddings.', 5000.00),
('SRV017', 'Babysitting', 'Professional babysitting services available upon
request.', 1500.00),
('SRV018', 'Guided Tours', 'Guided city and cultural tours available for booking
through the hotel.', 1500.00),
('SRV019', 'Room Upgrade', 'Upgrade to a higher category of room for an additional
charge.', 2000.00),
('SRV020', 'Airport Meet and Greet', 'Personalized airport pick-up and escort to
your accommodation.', 1500.00),
('SRV021', 'Late Check-Out', 'Late check-out services with no extra charge for
staying longer in the room.', 1000.00),
('SRV022', 'Early Check-In', 'Early check-in service allowing you to access your
room before standard check-in time.', 1000.00),
('SRV023', 'In-Room Entertainment', 'Access to a variety of entertainment options
such as movies and games in the room.', 300.00),
('SRV024', 'Wine Tasting', 'Private wine tasting experience featuring local and
international wines.', 2500.00),
('SRV025', 'Cooking Class', 'Learn to prepare traditional Indian dishes with a
local chef.', 1800.00),
('SRV026', 'Yoga Classes', 'Private or group yoga sessions led by professional
instructors.', 1200.00),
('SRV027', 'Fishing Trip', 'Guided fishing trips for guests interested in local
outdoor activities.', 3500.00),
('SRV028', 'Hiking Excursions', 'Guided hiking trips to nearby scenic areas and
mountains.', 3000.00),
('SRV029', 'Sightseeing Tour', 'Guided tours to local attractions and historical
sites.', 1500.00),
('SRV030', 'Cycling Rental', 'Rental of bicycles for exploring the area at your
leisure.', 700.00),
('SRV031', 'Barbecue Dinner', 'A special barbecue dinner in a garden setting with
local cuisine.', 3500.00),
('SRV032', 'Horseback Riding', 'Horseback riding tours available for guests of all
skill levels.', 2000.00),
('SRV033', 'Tea Tasting', 'Experience various Indian teas with a guided tasting
session.', 800.00),
('SRV034', 'Massage Therapy', 'Variety of therapeutic massages available for
relaxation and wellness.', 2000.00),
('SRV035', 'Beauty Treatments', 'Facials, manicure, pedicure, and other beauty
services.', 1500.00),
('SRV036', 'Chocolate Tasting', 'Indulge in a range of locally crafted chocolates
during a guided tasting session.', 1000.00),
('SRV037', 'Helicopter Tour', 'Helicopter ride for a bird’s eye view of the city
and surrounding landscapes.', 10000.00),
('SRV038', 'Personal Trainer', 'Personalized fitness sessions with a certified
trainer.', 3000.00),
('SRV039', 'Private Tour Guide', 'Book a private tour guide for a personalized
experience at local sites.', 4000.00),
('SRV040', 'Cooking Demo', 'Watch and learn as our chefs demonstrate the
preparation of Indian dishes.', 1200.00),
('SRV041', 'Private Yoga', 'Private one-on-one yoga sessions tailored to your
needs.', 2500.00),
('SRV042', 'Cultural Show', 'Enjoy traditional cultural performances including
dance and music.', 1500.00),
('SRV043', 'Antique Shopping', 'Visit local antique shops with a guided tour
through the area.', 1200.00),
('SRV044', 'Gift Shop', 'Exclusive items and souvenirs from the hotel’s gift
shop.', 500.00),
('SRV045', 'Cooking Workshop', 'Learn to make traditional Indian desserts and
dishes in this hands-on workshop.', 1800.00),
('SRV046', 'Champagne Breakfast', 'Indulge in a luxury breakfast experience with
champagne served in your room.', 4000.00),
('SRV047', 'Boat Ride', 'Take a relaxing boat ride on nearby rivers or lakes for a
serene experience.', 2500.00),
('SRV048', 'Fishing Equipment Rental', 'Rent fishing gear for your fishing
expeditions during your stay.', 600.00),
('SRV049', 'Local Craft Tour', 'A guided tour of local craft markets where you can
purchase handmade goods.', 800.00),
('SRV050', 'Reiki Healing', 'Experience Reiki healing sessions for stress relief
and energy balance.', 1500.00),
('SRV051', 'Private DJ Night', 'Book a private DJ for an exclusive night of music
and dancing at the hotel.', 8000.00),
('SRV052', 'Barbecue Set-Up', 'Special barbecue setups for guests who wish to enjoy
dining outdoors with friends or family.', 2500.00),
('SRV053', 'Horse Carriage Ride', 'Take a romantic carriage ride around the
property or through nearby parks.', 1800.00),
('SRV054', 'Night Safari', 'Enjoy a guided night safari for a chance to see
nocturnal wildlife in nearby areas.', 5000.00),
('SRV055', 'Flower Arrangement', 'Get personalized flower arrangements delivered to
your room.', 1000.00),
('SRV056', 'Personal Chef Service', 'Hire a personal chef for a custom dining
experience in your room or suite.', 6000.00),
('SRV057', 'Trekking Guide', 'Book a guide for a trekking adventure in nearby
scenic areas and hills.', 4000.00),
('SRV058', 'Airport Lounge Access', 'Exclusive access to a VIP lounge at the
airport upon arrival or departure.', 1500.00),
('SRV059', 'Mango Picking', 'Seasonal activity where guests can pick fresh mangoes
from local orchards.', 800.00),
('SRV060', 'Sushi Tasting', 'Indulge in a unique sushi tasting experience crafted
by local chefs.', 1200.00),
('SRV061', 'Private Dance Lesson', 'Learn local or contemporary dance forms with a
private instructor.', 1500.00),
('SRV062', 'Photography Session', 'Book a professional photographer for a photo
session during your stay.', 3000.00),
('SRV063', 'Cooking Tour', 'Join a local chef and tour markets to gather
ingredients for cooking classes.', 4000.00),
('SRV064', 'Bungee Jumping', 'Experience the thrill of bungee jumping with a nearby
operator.', 6000.00),
('SRV065', 'Scuba Diving', 'Certified scuba diving experience for beginners and
experienced divers.', 5000.00),
('SRV066', 'Private Pool Party', 'Exclusive access to a private pool for a party
experience.', 7000.00),
('SRV067', 'Luxury Yacht Ride', 'Enjoy a private luxury yacht ride on nearby waters
with a personal crew.', 15000.00);

INSERT INTO housekeeping (housekeeping_id, room_id, service_id, service_date)


VALUES
('HSK001', 'RM001', 'SRV001', '2025-02-21'),
('HSK002', 'RM002', 'SRV002', '2025-02-21'),
('HSK003', 'RM003', 'SRV003', '2025-02-22'),
('HSK004', 'RM004', 'SRV004', '2025-02-22'),
('HSK005', 'RM005', 'SRV005', '2025-02-22'),
('HSK006', 'RM006', 'SRV006', '2025-02-23'),
('HSK007', 'RM007', 'SRV007', '2025-02-23'),
('HSK008', 'RM008', 'SRV008', '2025-02-24'),
('HSK009', 'RM009', 'SRV009', '2025-02-24'),
('HSK010', 'RM010', 'SRV010', '2025-02-24'),
('HSK011', 'RM011', 'SRV011', '2025-02-25'),
('HSK012', 'RM012', 'SRV012', '2025-02-25'),
('HSK013', 'RM013', 'SRV013', '2025-02-25'),
('HSK014', 'RM014', 'SRV014', '2025-02-26'),
('HSK015', 'RM015', 'SRV015', '2025-02-26'),
('HSK016', 'RM016', 'SRV016', '2025-02-26'),
('HSK017', 'RM017', 'SRV017', '2025-02-27'),
('HSK018', 'RM018', 'SRV018', '2025-02-27'),
('HSK019', 'RM019', 'SRV019', '2025-02-27'),
('HSK020', 'RM020', 'SRV020', '2025-02-28'),
('HSK021', 'RM021', 'SRV021', '2025-02-28'),
('HSK022', 'RM022', 'SRV022', '2025-02-28'),
('HSK023', 'RM023', 'SRV023', '2025-03-01'),
('HSK024', 'RM024', 'SRV024', '2025-03-01'),
('HSK025', 'RM025', 'SRV025', '2025-03-01'),
('HSK026', 'RM026', 'SRV026', '2025-03-02'),
('HSK027', 'RM027', 'SRV027', '2025-03-02'),
('HSK028', 'RM028', 'SRV028', '2025-03-02'),
('HSK029', 'RM029', 'SRV029', '2025-03-03'),
('HSK030', 'RM030', 'SRV030', '2025-03-03'),
('HSK031', 'RM031', 'SRV031', '2025-03-03'),
('HSK032', 'RM032', 'SRV032', '2025-03-04'),
('HSK033', 'RM033', 'SRV033', '2025-03-04'),
('HSK034', 'RM034', 'SRV034', '2025-03-04'),
('HSK035', 'RM035', 'SRV035', '2025-03-05'),
('HSK036', 'RM036', 'SRV036', '2025-03-05'),
('HSK037', 'RM037', 'SRV037', '2025-03-05'),
('HSK038', 'RM038', 'SRV038', '2025-03-06'),
('HSK039', 'RM039', 'SRV039', '2025-03-06'),
('HSK040', 'RM040', 'SRV040', '2025-03-06'),
('HSK041', 'RM041', 'SRV041', '2025-03-07'),
('HSK042', 'RM042', 'SRV042', '2025-03-07'),
('HSK043', 'RM043', 'SRV043', '2025-03-07'),
('HSK044', 'RM044', 'SRV044', '2025-03-08'),
('HSK045', 'RM045', 'SRV045', '2025-03-08'),
('HSK046', 'RM046', 'SRV046', '2025-03-08'),
('HSK047', 'RM047', 'SRV047', '2025-03-09'),
('HSK048', 'RM048', 'SRV048', '2025-03-09'),
('HSK049', 'RM049', 'SRV049', '2025-03-09'),
('HSK050', 'RM050', 'SRV050', '2025-03-10'),
('HSK051', 'RM051', 'SRV051', '2025-03-10'),
('HSK052', 'RM052', 'SRV052', '2025-03-10'),
('HSK053', 'RM053', 'SRV053', '2025-03-11'),
('HSK054', 'RM054', 'SRV054', '2025-03-11'),
('HSK055', 'RM055', 'SRV055', '2025-03-11'),
('HSK056', 'RM056', 'SRV056', '2025-03-12'),
('HSK057', 'RM057', 'SRV057', '2025-03-12'),
('HSK058', 'RM058', 'SRV058', '2025-03-12'),
('HSK059', 'RM059', 'SRV059', '2025-03-13'),
('HSK060', 'RM060', 'SRV060', '2025-03-13'),
('HSK061', 'RM061', 'SRV061', '2025-03-13'),
('HSK062', 'RM062', 'SRV062', '2025-03-14'),
('HSK063', 'RM063', 'SRV063', '2025-03-14'),
('HSK064', 'RM064', 'SRV064', '2025-03-14'),
('HSK065', 'RM065', 'SRV065', '2025-03-15'),
('HSK066', 'RM066', 'SRV066', '2025-03-15'),
('HSK067', 'RM067', 'SRV067', '2025-03-15');

INSERT INTO feedback (feedback_id, reservation_id, rating, comments, feedback_date)


VALUES
('FBK001', 'RSV001', 5, 'Excellent room service and friendly staff. Highly
recommended!', '2025-02-01'),
('FBK002', 'RSV002', 4, 'Good experience, but could improve cleanliness in the
bathroom.', '2025-02-02'),
('FBK003', 'RSV003', 5, 'Fantastic stay! The spa service was incredible.', '2025-
02-02'),
('FBK004', 'RSV004', 3, 'The room was decent, but there was an issue with the air
conditioning.', '2025-02-03'),
('FBK005', 'RSV005', 4, 'Great location, but the breakfast buffet could have been
more diverse.', '2025-02-03'),
('FBK006', 'RSV006', 5, 'Amazing spa experience and relaxing ambiance. Will return
soon!', '2025-02-04'),
('FBK007', 'RSV007', 4, 'Overall good stay. The housekeeping service was punctual
and efficient.', '2025-02-04'),
('FBK008', 'RSV008', 5, 'Loved the private dinner experience. The chef did a great
job!', '2025-02-05'),
('FBK009', 'RSV009', 5, 'Great airport shuttle service, and the staff were very
welcoming.', '2025-02-05'),
('FBK010', 'RSV010', 3, 'Room service took longer than expected. Could use
improvement in timeliness.', '2025-02-06'),
('FBK011', 'RSV011', 4, 'Room was clean and comfortable. However, the Wi-Fi
connection was weak.', '2025-02-06'),
('FBK012', 'RSV012', 5, 'Wonderful experience! The concierge team was very helpful
in planning activities.', '2025-02-07'),
('FBK013', 'RSV013', 4, 'Housekeeping was good but could have been a little more
thorough.', '2025-02-07'),
('FBK014', 'RSV014', 5, 'Great gym facilities and the swimming pool was well-
maintained.', '2025-02-08'),
('FBK015', 'RSV015', 4, 'The room was nice, but I think the price could have been a
bit lower.', '2025-02-08'),
('FBK016', 'RSV016', 5, 'Private yoga class was fantastic! Very peaceful and
professional.', '2025-02-09'),
('FBK017', 'RSV017', 4, 'Loved the city tour, but the bus could have been more
comfortable.', '2025-02-09'),
('FBK018', 'RSV018', 3, 'The car rental service was convenient but could have been
more flexible.', '2025-02-10'),
('FBK019', 'RSV019', 5, 'Excellent breakfast buffet with a wide variety of
options.', '2025-02-10'),
('FBK020', 'RSV020', 4, 'The room was nice, but I would have preferred a better
view.', '2025-02-11'),
('FBK021', 'RSV021', 5, 'Amazing experience overall! Would love to come back for a
longer stay.', '2025-02-11'),
('FBK022', 'RSV022', 4, 'The event planning team was excellent, but the venue could
have been larger.', '2025-02-12'),
('FBK023', 'RSV023', 3, 'The housekeeping was satisfactory, but the room could have
been more spacious.', '2025-02-12'),
('FBK024', 'RSV024', 5, 'Fantastic guided hiking excursion! Highly recommended for
nature lovers.', '2025-02-13'),
('FBK025', 'RSV025', 4, 'I enjoyed the yoga sessions but felt the price was a
little high for the value.', '2025-02-13'),
('FBK026', 'RSV026', 5, 'The personal trainer was fantastic. I felt great after my
session.', '2025-02-14'),
('FBK027', 'RSV027', 5, 'Great pet sitting service. Our dog was well taken care
of.', '2025-02-14'),
('FBK028', 'RSV028', 4, 'Good experience overall. Would have liked a little more
variety in the fitness classes.', '2025-02-15'),
('FBK029', 'RSV029', 5, 'Beautiful room with an excellent view. Loved the spa
treatment!', '2025-02-15'),
('FBK030', 'RSV030', 4, 'The airport lounge was a nice touch, but it could have
been more spacious.', '2025-02-16'),
('FBK031', 'RSV031', 5, 'The private DJ night was amazing. It made my stay extra
special!', '2025-02-16'),
('FBK032', 'RSV032', 3, 'The cycling rental service was fine, but the bikes were
not in great condition.', '2025-02-17'),
('FBK033', 'RSV033', 5, 'The sightseeing tour was fantastic. The guide was very
knowledgeable.', '2025-02-17'),
('FBK034', 'RSV034', 4, 'The room was good, but I felt the food delivery could have
been faster.', '2025-02-18'),
('FBK035', 'RSV035', 5, 'Had a great time at the barbecue dinner. Excellent food
and ambiance!', '2025-02-18'),
('FBK036', 'RSV036', 5, 'The guided fishing trip was unforgettable. Great
experience overall!', '2025-02-19'),
('FBK037', 'RSV037', 4, 'The horseback riding was fun, but I think the ride could
have been longer.', '2025-02-19'),
('FBK038', 'RSV038', 3, 'The room service was good but needed more attention to
detail.', '2025-02-20'),
('FBK039', 'RSV039', 5, 'The cooking class was amazing! Loved learning about Indian
cuisine.', '2025-02-20'),
('FBK040', 'RSV040', 4, 'Great experience overall, but I wish the price for the
private dinner was lower.', '2025-02-21'),
('FBK041', 'RSV041', 5, 'The local craft tour was very interesting. Learned a lot
about local traditions.', '2025-02-21'),
('FBK042', 'RSV042', 5, 'The personal chef service was top-notch. Everything was
prepared to perfection!', '2025-02-22'),
('FBK043', 'RSV043', 3, 'The room was good, but I had an issue with the Wi-Fi
connectivity.', '2025-02-22'),
('FBK044', 'RSV044', 5, 'The fishing equipment rental was perfect. The experience
was truly memorable.', '2025-02-23'),
('FBK045', 'RSV045', 4, 'The massage therapy was great but the spa area was a bit
crowded.', '2025-02-23'),
('FBK046', 'RSV046', 5, 'The night safari was incredible. Highly recommend it for
adventure lovers.', '2025-02-24'),
('FBK047', 'RSV047', 5, 'The photography session was amazing! The photographer was
very professional.', '2025-02-24'),
('FBK048', 'RSV048', 3, 'The bungee jumping experience was fun, but the staff were
not very friendly.', '2025-02-25'),
('FBK049', 'RSV049', 4, 'The sushi tasting experience was fantastic. Would have
liked more options.', '2025-02-25'),
('FBK050', 'RSV050', 5, 'Great experience overall. The local sightseeing tour was
very informative!', '2025-02-26'),
('FBK051', 'RSV051', 5, 'The luxury yacht ride was amazing. Worth every penny!',
'2025-02-26'),
('FBK052', 'RSV052', 4, 'Good experience, but the room temperature was too warm for
my liking.', '2025-02-27'),
('FBK053', 'RSV053', 5, 'The champagne breakfast in the room was luxurious.
Excellent service!', '2025-02-27'),
('FBK054', 'RSV054', 4, 'The horseback riding was nice, but the trails were a bit
short.', '2025-02-28'),
('FBK055', 'RSV055', 5, 'The gift shop had a great selection of souvenirs. I bought
several items!', '2025-02-28'),
('FBK056', 'RSV056', 3, 'The event planning was good, but the venue could have been
bigger.', '2025-03-01'),
('FBK057', 'RSV057', 5, 'The private dance lesson was fantastic. Learned a lot
about Indian dance forms.', '2025-03-01'),
('FBK058', 'RSV058', 5, 'Had a great time with the cooking tour. Learned so much
about local cuisine!', '2025-03-02'),
('FBK059', 'RSV059', 5, 'Great experience! Would highly recommend the local craft
tour.', '2025-03-02'),
('FBK060', 'RSV060', 4, 'The late check-out service was convenient, but it could
have been more flexible.', '2025-03-03'),
('FBK061', 'RSV061', 5, 'Loved the private pool party! Definitely worth it.',
'2025-03-03'),
('FBK062', 'RSV062', 4, 'The staff was helpful, but I had some issues with the room
amenities.', '2025-03-04'),
('FBK063', 'RSV063', 5, 'Wonderful yoga session, very peaceful and rejuvenating.
Highly recommend it!', '2025-03-04'),
('FBK064', 'RSV064', 5, 'The river cruise was amazing. It was so relaxing and
scenic.', '2025-03-05'),
('FBK065', 'RSV065', 4, 'Overall good stay, but the check-in process could have
been faster.', '2025-03-05'),
('FBK066', 'RSV066', 5, 'The cultural dance performance was exceptional. Would
definitely return for more!', '2025-03-06'),
('FBK067', 'RSV067', 3, 'The food at the restaurant was decent, but I felt it could
have been more flavorful.', '2025-03-06');

INSERT INTO discounts (discount_id, discount_code, description,


discount_percentage) VALUES
('D001', 'DISC001', 'Seasonal discount for winter bookings', 15),
('D002', 'DISC002', 'New Year discount', 20),
('D003', 'DISC003', 'Weekend discount for extended stays', 10),
('D004', 'DISC004', 'Early bird special discount for bookings 3 months ahead', 25),
('D005', 'DISC005', 'Loyalty discount for returning customers', 30),
('D006', 'DISC006', 'Corporate discount for business travelers', 12),
('D007', 'DISC007', 'Group booking discount for 5+ rooms', 18),
('D008', 'DISC008', 'Holiday discount for Christmas season', 20),
('D009', 'DISC009', 'Summer sale discount for long stays', 15),
('D010', 'DISC010', 'Last-minute booking discount for unsold rooms', 10),
('D011', 'DISC011', 'Student discount for educational trips', 10),
('D012', 'DISC012', 'Discount for seniors aged 60 and above', 20),
('D013', 'DISC013', 'Family discount for 2+ children under 12', 15),
('D014', 'DISC014', 'Business trip discount for professionals', 18),
('D015', 'DISC015', 'Special discount for international guests', 20),
('D016', 'DISC016', 'Weekend getaway discount for weekend bookings', 12),
('D017', 'DISC017', 'Referral program discount for bringing new guests', 15),
('D018', 'DISC018', 'Free breakfast offer with stay', 0),
('D019', 'DISC019', 'Anniversary celebration discount', 10),
('D020', 'DISC020', 'Winter holiday promo for bookings before 15th December', 20),
('D021', 'DISC021', 'Black Friday sale discount for room reservations', 30),
('D022', 'DISC022', 'Wedding discount for wedding planners', 25),
('D023', 'DISC023', 'Regular customer discount for annual stays', 20),
('D024', 'DISC024', 'Couple getaway discount for honeymooners', 18),
('D025', 'DISC025', '3-night stay discount for extended stay reservations', 10),
('D026', 'DISC026', '2-night stay discount for weekend bookings', 8),
('D027', 'DISC027', 'Special discount for medical tourism guests', 15),
('D028', 'DISC028', 'Flash sale discount for one-night bookings', 25),
('D029', 'DISC029', 'Senior citizen special for members of pension schemes', 15),
('D030', 'DISC030', 'Public holiday discount on national holidays', 12),
('D031', 'DISC031', 'Off-season discount for bookings in low demand months', 18),
('D032', 'DISC032', 'Military personnel discount for armed forces members', 20),
('D033', 'DISC033', 'Teacher appreciation discount for educators', 15),
('D034', 'DISC034', 'Birthday celebration special for bookings made on birthday',
25),
('D035', 'DISC035', 'Off-peak travel discount for weekdays', 10),
('D036', 'DISC036', 'Hotel anniversary special discount for loyal customers', 30),
('D037', 'DISC037', 'First-time guest discount for new customers', 20),
('D038', 'DISC038', 'Corporate group discount for events and conferences', 15),
('D039', 'DISC039', 'Night-time booking special discount for late check-ins', 10),
('D040', 'DISC040', 'Summer package discount for family vacations', 20),
('D041', 'DISC041', 'New guest offer for first-time users of our hotel services',
25),
('D042', 'DISC042', 'Summer school break discount for student stays', 10),
('D043', 'DISC043', 'Annual membership discount for repeat guests', 20),
('D044', 'DISC044', 'Discount for long-term bookings of over 1 month', 15),
('D045', 'DISC045', 'Special discount for luxury suite bookings', 12),
('D046', 'DISC046', 'Discount for returning business clients', 10),
('D047', 'DISC047', 'Discount on spa services with any room booking', 20),
('D048', 'DISC048', 'Local resident discount for city residents', 12),
('D049', 'DISC049', 'Honeymoon suite special offer for newlyweds', 30),
('D050', 'DISC050', 'Group travel discount for bookings over 10 people', 20),
('D051', 'DISC051', 'Discount for room upgrades during off-peak times', 18),
('D052', 'DISC052', 'Hotel loyalty points redemption discount', 25),
('D053', 'DISC053', 'Seasonal special for booking during Diwali', 15),
('D054', 'DISC054', 'Exclusive membership club discount', 20),
('D055', 'DISC055', 'Weekend retreat package discount', 18),
('D056', 'DISC056', 'Extended holiday discount for stays over 7 days', 12),
('D057', 'DISC057', 'Student exchange program discount for guest bookings', 10),
('D058', 'DISC058', 'Christmas special discount for room bookings in December',
25),
('D059', 'DISC059', 'Stay longer discount for extended stays of 10 nights or more',
30),
('D060', 'DISC060', 'Off-season promotion for last-minute bookings', 18),
('D061', 'DISC061', 'Customer appreciation discount for loyal clients', 20),
('D062', 'DISC062', 'Discount for young professionals staying on business trips',
15),
('D063', 'DISC063', 'Referral discount for guests who refer new customers', 10),
('D064', 'DISC064', 'Special offer for booking through mobile app', 15),
('D065', 'DISC065', 'Booking through affiliate partners discount', 12),
('D066', 'DISC066', 'Weekend stay discount for quick bookings on Friday nights',
8),
('D067', 'DISC067', 'Adventure tour discount for guests booking with travel
packages', 20);
INSERT INTO hotel_policies (policy_id, policy_name, description) VALUES
('POL001', 'Check-in Policy', 'Check-in time is from 2:00 PM. Guests arriving
before this time will be subject to availability and additional charges may
apply.'),
('POL002', 'Check-out Policy', 'Check-out time is before 12:00 PM. Late check-out
will be subject to availability and an additional fee may apply.'),
('POL003', 'Cancellation Policy', 'Free cancellation up to 24 hours before check-
in. After that, 50% of the booking amount will be charged.'),
('POL004', 'Smoking Policy', 'Smoking is prohibited inside the rooms. Designated
smoking areas are available outside the hotel.'),
('POL005', 'Pets Policy', 'Pets are not allowed inside the hotel unless a special
request is made prior to booking.'),
('POL006', 'Parking Policy', 'Free parking is available for hotel guests. Parking
is available on a first-come, first-served basis.'),
('POL007', 'Noise Policy', 'Guests are requested to avoid excessive noise in hotel
rooms and common areas after 10:00 PM.'),
('POL008', 'Alcohol Policy', 'Alcohol consumption is not allowed in common areas.
Alcohol is only permitted in hotel rooms.'),
('POL009', 'Visitor Policy', 'Only registered guests are allowed in hotel rooms.
Visitors must check in at the front desk.'),
('POL010', 'Damage Policy', 'Guests will be charged for any damage caused to the
hotel property during their stay.'),
('POL011', 'Credit Card Policy', 'A valid credit card is required at check-in for
incidentals and damages.'),
('POL012', 'Payment Policy', 'Full payment is required at check-in. Payment can be
made by credit/debit card or cash.'),
('POL013', 'Early Check-in Policy', 'Early check-in is subject to availability and
additional charges may apply.'),
('POL014', 'Late Check-out Policy', 'Late check-out is subject to availability and
will incur an additional charge of INR 500 per hour.'),
('POL015', 'Child Policy', 'Children under 12 stay free when sharing a room with
parents. Extra charges may apply for additional bedding.'),
('POL016', 'Extra Bed Policy', 'An additional charge applies for extra beds,
subject to availability. Please request extra beds at the time of booking.'),
('POL017', 'Health & Safety Policy', 'The hotel adheres to all safety and
sanitation protocols as per local government guidelines.'),
('POL018', 'Guest Behavior Policy', 'Guests are expected to behave in a manner that
does not disrupt the stay of others. The hotel reserves the right to refuse service
to disruptive guests.'),
('POL019', 'Room Assignment Policy', 'The hotel reserves the right to assign rooms
based on availability and guest preferences, but cannot guarantee specific room
requests.'),
('POL020', 'Laundry Policy', 'Laundry services are available on-site for an
additional charge. Guests are requested to inquire at the front desk.'),
('POL021', 'Safety Deposit Policy', 'Guests are encouraged to use the safety
deposit box in their room for valuables. The hotel is not responsible for lost
items.'),
('POL022', 'Air Conditioning Policy', 'Rooms are equipped with air conditioning. If
air conditioning is not working, please inform the front desk for assistance.'),
('POL023', 'Room Cleaning Policy', 'Rooms are cleaned daily between 9:00 AM and
4:00 PM. Guests can request additional cleaning at an extra charge.'),
('POL024', 'Minibar Policy', 'Minibars are available in select rooms. Items
consumed from the minibar will be charged to the guest’s room account.'),
('POL025', 'Wi-Fi Policy', 'Free Wi-Fi is available for guests in all hotel rooms
and common areas. The hotel is not responsible for slow or interrupted service.'),
('POL026', 'Room Key Policy', 'Guests must return room keys to the front desk at
check-out. Lost keys will be subject to a replacement charge.'),
('POL027', 'Booking Policy', 'Bookings must be made in advance. Guests should
provide valid identification at check-in.'),
('POL028', 'Third-Party Bookings Policy', 'For third-party bookings, a letter of
authorization from the primary guest is required for check-in.'),
('POL029', 'Special Requests Policy', 'Special requests are subject to availability
and cannot be guaranteed. Please inform the hotel at the time of booking.'),
('POL030', 'Group Booking Policy', 'For group bookings, a separate contract is
required, and deposits may be necessary to confirm the reservation.'),
('POL031', 'Conference Policy', 'Conference facilities must be booked in advance
and may incur additional charges based on usage.'),
('POL032', 'Refund Policy', 'Refunds will only be issued if the booking is
cancelled in accordance with the cancellation policy.'),
('POL033', 'Special Needs Policy', 'Guests with special needs or disabilities
should notify the hotel at the time of booking to ensure accommodations are
made.'),
('POL034', 'Guest Identification Policy', 'Guests are required to show a
government-issued ID at check-in for verification purposes.'),
('POL035', 'Alcoholic Beverage Policy', 'Alcoholic beverages may be consumed in
designated areas, subject to local licensing laws.'),
('POL036', 'Tobacco Policy', 'Tobacco smoking is permitted only in designated
outdoor smoking areas.'),
('POL037', 'Business Center Policy', 'The hotel provides a business center with
computers and internet access. Usage is subject to availability and an additional
fee may apply.'),
('POL038', 'Gift Shop Policy', 'A gift shop is available on-site with a variety of
souvenirs and snacks. Payment is accepted via cash or card.'),
('POL039', 'Hotel Service Hours Policy', 'Hotel services such as room service,
housekeeping, and restaurant dining are available from 7:00 AM to 10:00 PM.'),
('POL040', 'Emergency Procedure Policy', 'The hotel has an emergency evacuation
procedure in place. Please familiarize yourself with the nearest exits upon check-
in.'),
('POL041', 'Parking Fee Policy', 'Hotel parking is available for INR 200 per day.
Valet services are also available at an additional charge.'),
('POL042', 'Check-in Age Policy', 'Guests must be at least 18 years old to check-in
without a guardian or parent.'),
('POL043', 'Shuttle Service Policy', 'Shuttle services to and from the airport are
available on request, subject to availability and a nominal fee.'),
('POL044', 'Lost & Found Policy', 'The hotel is not responsible for items left
behind by guests. Lost items will be kept for a maximum of 30 days.'),
('POL045', 'Event Policy', 'The hotel can accommodate private events such as
weddings and parties, subject to availability and terms.'),
('POL046', 'Fire Safety Policy', 'The hotel complies with all fire safety
regulations. Fire drills will be conducted periodically.'),
('POL047', 'Health Club Policy', 'The hotel offers a fitness center for guest use.
Guests should adhere to posted guidelines and regulations for safety.'),
('POL048', 'Spa & Wellness Policy', 'Spa services are available by appointment
only. Cancellations must be made 24 hours in advance to avoid penalties.'),
('POL049', 'Dining Policy', 'Breakfast is served from 7:00 AM to 10:00 AM. Guests
are expected to pay for meals not included in the room package.'),
('POL050', 'Sustainability Policy', 'The hotel is committed to sustainability,
including waste reduction and energy efficiency. Guests are encouraged to
participate in eco-friendly practices.');

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy