Skip to content

Commit 809d190

Browse files
authored
Add files via upload
1 parent c22d636 commit 809d190

17 files changed

+261
-0
lines changed

06-07.sql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
select order_id, customer_id, order_timestamp, total_amount,
2+
3+
avg(total_amount) over (partition by customer_id order by order_timestamp
4+
rows between 1 preceding and current row) as mvg_avg
5+
from orders

07-04.sql

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
create procedure add_category(cat_id int, cat_name varchar)
2+
language plpgsql
3+
AS
4+
$$
5+
BEGIN
6+
insert into categories values (cat_id, cat_name);
7+
END;
8+
$$;
9+
10+
Call add_category(6, 'Fashion')
11+
12+
select * from categories
13+
14+
drop procedure add_category

07_02.sql

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
create view customer_order_summary AS
2+
3+
select customer_id,
4+
count(order_id),
5+
sum(total_amount)
6+
from
7+
orders
8+
group by customer_id
9+
10+
select * from customer_order_summary where customer_id =1

08-03.sql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
explain analyze select * from orders where order_id=1
2+
3+
select * from pg_stat_user_indexes where relname ='orders'
4+
5+
explain select * from orders where order_id=1

08_02.sql

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
create index idx_customer_email on customer(email);
2+
3+
create index idx_prod_cat on products(category_id)
4+
5+
create unique index idx_prod_name on products(name)
6+
7+
create index idx_cust_order on orders(customer_id, order_timestamp)

08_04.sql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
select * from orders where customer_id =1 order by order_timestamp desc
2+
create index idx_cust on orders(customer_id, order_timestamp)
3+
4+
5+
select * from orders where customer_id =1 order by order_timestamp desc limit 2

09_03.sql

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
create role mike with login
2+
3+
create role tom with login password 'tom@123';
4+
5+
create role John with login password 'John@123' superuser
6+
7+
create role John1 with login password 'John@123' createdb;
8+
9+
create role John2 with login password 'John@123' createrole
10+
11+
create role John3 with login password 'John@123' valid until '2024-05-31'
12+
13+
create role John4 with login password 'John@123' connection limit 10
14+
15+
create role John5 with login password 'John@123' in role John4
16+
17+
create user John6 with password 'John@123'

09_04.sql

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
grant select on customer to john1
2+
3+
grant insert, delete on customer to john1
4+
5+
grant select on all tables in schema public to john1
6+
7+
grant select on customer to john1 with grant option
8+
9+
revoke select on customer from john1
10+
11+
revoke select, insert on customer from john1
12+
13+
revoke all on customer from john1

09_05.sql

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
create role sales_team
2+
3+
create role admins
4+
5+
grant select on all tables in schema public to sales_team
6+
7+
grant all privileges on all tables in schema public to admins
8+
9+
create role sales_managers in role sales_team

10_01.sql

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
select * from customer
2+
3+
select * from customer where city = 'City1'
4+
5+
select * from customer where city = 'City1'
6+
7+
select * from customer where city in ('City1', 'City2')
8+
9+
select avg(customer_name) from customer
10+
11+
select * from orders join customer on

10_03.sql

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
select * from products where price is not null
2+
3+
select true and null
4+
5+
avg
6+
max
7+
min
8+
count(*)

10_04.sql

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
SELECT
2+
DATE_TRUNC('month', o.order_timestamp) AS order_month,
3+
SUM(o.total_quantity * p.price) AS total_sales
4+
FROM
5+
orders o
6+
JOIN
7+
products p ON o.product_id = p.product_id
8+
WHERE
9+
o.order_timestamp >= '2023-01-01' AND
10+
o.order_timestamp < '2025-04-01'
11+
GROUP BY
12+
order_month
13+
ORDER BY
14+
order_month;
15+
16+
select * from orders where total_quantity is null
17+
18+
select * from products where price is null
19+
20+
select * from orders where product_id in (1, 4)
21+
22+
update products set price =200 where product_id =4

12_02_Task1.sql

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
-- Task 1: Database Schema Creation
2+
-- Define tables: Customers, Policies, Claims, PolicyTypes.
3+
-- Include fields such as CustomerID, PolicyID, ClaimID, PolicyTypeID, ClaimAmount, ClaimDate,
4+
-- PolicyStartDate, PolicyEndDate, etc.
5+
6+
---Customers Table---------
7+
CREATE TABLE Customers (
8+
CustomerID SERIAL PRIMARY KEY,
9+
FirstName VARCHAR(50),
10+
LastName VARCHAR(50),
11+
DateOfBirth DATE,
12+
Gender CHAR(1),
13+
Address VARCHAR(100),
14+
City VARCHAR(50),
15+
State VARCHAR(50),
16+
ZipCode VARCHAR(10)
17+
);
18+
19+
---2. PolicyTypes Table
20+
21+
CREATE TABLE PolicyTypes (
22+
PolicyTypeID SERIAL PRIMARY KEY,
23+
PolicyTypeName VARCHAR(50),
24+
Description TEXT
25+
);
26+
27+
----3. Policies Table
28+
29+
CREATE TABLE Policies (
30+
PolicyID SERIAL PRIMARY KEY,
31+
CustomerID INT REFERENCES Customers(CustomerID),
32+
PolicyTypeID INT REFERENCES PolicyTypes(PolicyTypeID),
33+
PolicyStartDate DATE,
34+
PolicyEndDate DATE,
35+
Premium DECIMAL(10,2)
36+
);
37+
38+
---4. Claims Table
39+
40+
CREATE TABLE Claims (
41+
ClaimID SERIAL PRIMARY KEY,
42+
PolicyID INT REFERENCES Policies(PolicyID),
43+
ClaimDate DATE,
44+
ClaimAmount DECIMAL(10,2),
45+
ClaimDescription TEXT,
46+
ClaimStatus VARCHAR(50)
47+
);

12_02_Task2.sql

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+

12_02_Task3.sql

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
-- Task 3: Analytical Queries
2+
-- Write a query to calculate the total number of claims per policy type.
3+
-- Use analytical functions to determine the monthly claim frequency and average claim amount.
4+
SELECT
5+
pt.PolicyTypeName,
6+
COUNT(c.ClaimID) AS TotalClaims
7+
FROM
8+
Claims c
9+
JOIN
10+
Policies p ON c.PolicyID = p.PolicyID
11+
JOIN
12+
PolicyTypes pt ON p.PolicyTypeID = pt.PolicyTypeID
13+
GROUP BY
14+
pt.PolicyTypeName
15+
ORDER BY
16+
TotalClaims DESC;
17+
18+
----------------------------------
19+
20+
--- Query 2: Monthly Claim Frequency and Average Claim Amount
21+
22+
SELECT
23+
DATE_TRUNC('month', ClaimDate) AS ClaimMonth,
24+
COUNT(*) AS ClaimFrequency,
25+
AVG(ClaimAmount) AS AverageClaimAmount
26+
FROM
27+
Claims
28+
GROUP BY
29+
ClaimMonth
30+
ORDER BY
31+
ClaimMonth;
32+
33+

12_02_Task4.sql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
-- Task 4: 4. Optimization with
2+
-- Discuss the creation of indexes on any columns used frequently in WHERE clauses or as join keys to improve performance.
3+
4+
CREATE INDEX idx_claims_claimdate ON Claims(ClaimDate);
5+

12_02_Task5.sql

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
--Task 5: Roles and Permissions
2+
-- Create roles: ClaimsAnalyst and ClaimsManager.
3+
-- ‘ClaimsAnalyst’ role should have read-only access to claims and policies data.
4+
-- ‘ClaimsManager’ role should have full access to claims data and the ability to update policy information.
5+
6+
CREATE ROLE ClaimsAnalyst LOGIN PASSWORD 'password1';
7+
8+
-- Create ClaimsManager Role
9+
CREATE ROLE ClaimsManager LOGIN PASSWORD 'password2';
10+
11+
12+
-- Grant select on necessary tables
13+
GRANT SELECT ON Claims, Policies, PolicyTypes TO ClaimsAnalyst;
14+
15+
GRANT SELECT, INSERT, UPDATE, DELETE ON Claims, Policies, PolicyTypes TO ClaimsManager;
16+

0 commit comments

Comments
 (0)