|
| 1 | +-- Task 2: Data Population |
| 2 | +-- Insert realistic sample data into each table, ensuring a variety of scenarios are represented, |
| 3 | +-- such as different policy types, claim amounts, and customer profiles. |
| 4 | + |
| 5 | +INSERT INTO PolicyTypes (PolicyTypeName, Description) VALUES |
| 6 | +('Auto', 'Insurance coverage for automobiles'), |
| 7 | +('Home', 'Insurance coverage for residential homes'), |
| 8 | +('Life', 'Long-term insurance coverage upon the policyholder''s death'), |
| 9 | +('Health', 'Insurance coverage for medical and surgical expenses'); |
| 10 | + |
| 11 | +---------- |
| 12 | + |
| 13 | +INSERT INTO Customers (FirstName, LastName, DateOfBirth, Gender, Address, City, State, ZipCode) VALUES |
| 14 | +('John', 'Doe', '1980-04-12', 'M', '123 Elm St', 'Springfield', 'IL', '62704'), |
| 15 | +('Jane', 'Smith', '1975-09-23', 'F', '456 Maple Ave', 'Greenville', 'TX', '75402'), |
| 16 | +('Emily', 'Johnson', '1990-01-17', 'F', '789 Oak Dr', 'Phoenix', 'AZ', '85001'), |
| 17 | +('Michael', 'Brown', '1985-07-30', 'M', '321 Pine St', 'Riverside', 'CA', '92501'); |
| 18 | + |
| 19 | +------------- |
| 20 | +INSERT INTO Policies (CustomerID, PolicyTypeID, PolicyStartDate, PolicyEndDate, Premium) VALUES |
| 21 | +(1, 1, '2021-01-01', '2022-01-01', 120.00), |
| 22 | +(2, 2, '2021-02-01', '2022-02-01', 150.00), |
| 23 | +(1, 3, '2021-03-01', '2024-03-01', 300.00), |
| 24 | +(3, 4, '2021-04-01', '2022-04-01', 200.00), |
| 25 | +(4, 1, '2021-05-01', '2022-05-01', 100.00); |
| 26 | + |
| 27 | +----------------- |
| 28 | +INSERT INTO Claims (PolicyID, ClaimDate, ClaimAmount, ClaimDescription, ClaimStatus) VALUES |
| 29 | +(1, '2021-06-15', 500.00, 'Car accident', 'Approved'), |
| 30 | +(2, '2021-07-20', 1000.00, 'House fire', 'Pending'), |
| 31 | +(3, '2021-08-05', 20000.00, 'Life insurance claim', 'Approved'), |
| 32 | +(4, '2021-09-10', 150.00, 'Doctor visit', 'Denied'), |
| 33 | +(5, '2021-10-22', 300.00, 'Car theft', 'Approved'); |
| 34 | + |
0 commit comments