-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path9_MANAGER_VIEWS.sql
More file actions
38 lines (18 loc) · 749 Bytes
/
Copy path9_MANAGER_VIEWS.sql
File metadata and controls
38 lines (18 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--LOGIN AS PL_MANAGER1
--EXECUTION ORDER : 9
set SERVEROUTPUT on
CLEAR SCREEN;
--- To display parking_slots_filled at particular time. For View and testing purpose we have hardcoded a particular time interval
select * from PLADMIN.PARKING_SLOT;
-- To display vacant parking slot
select * from PLADMIN.parking_slots_vacant;
-- To display feedback
select * from PLADMIN.customer_feedback;
--To display the peak Hours
select * from PLADMIN.peak_hours;
--To display off_peak_hours
select * from PLADMIN.off_peak_hours;
--To display parking lot performance by day
select * from PLADMIN.parking_lot_performance_by_day;
--To display No show booking- who have booked a slot but haven't checked in
SELECT * FROM PLADMIN.NO_SHOW_BOOKINGS;