-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_views.sql
104 lines (97 loc) · 2.55 KB
/
create_views.sql
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
CREATE SCHEMA IF NOT EXISTS reporting_layer;
CREATE OR REPLACE VIEW reporting_layer.pickup_date(
pickup_date_key,
pickup_date,
pickup_day_of_month,
pickup_day_of_week,
pickup_date_of_week_name,
pickup_month,
pickup_year,
pickup_is_weekend
)
AS
SELECT
date_key,
date,
day_of_month,
day_of_week,
date_of_week_name,
month,
year,
is_weekend
FROM
presentation_layer.dim_date;
CREATE OR REPLACE VIEW reporting_layer.dropoff_date(
dropoff_date_key,
dropoff_date,
dropoff_day_of_month,
dropoff_day_of_week,
dropoff_date_of_week_name,
dropoff_month,
dropoff_year,
dropoff_is_weekend
)
AS
SELECT
date_key,
date,
day_of_month,
day_of_week,
date_of_week_name,
month,
year,
is_weekend
FROM
presentation_layer.dim_date;
CREATE OR REPLACE VIEW reporting_layer.pickup_time(
pickup_time_key,
pickup_hour,
pickup_time_of_day
)
AS
SELECT
time_key,
hour,
time_of_day
FROM
presentation_layer.dim_time;
CREATE OR REPLACE VIEW reporting_layer.dropoff_time(
dropoff_time_key,
dropoff_hour,
dropoff_time_of_day
)
AS
SELECT
time_key,
hour,
time_of_day
FROM
presentation_layer.dim_time;
CREATE OR REPLACE VIEW reporting_layer.pickup_location(
pickup_location_key,
pickup_borough,
pickup_zone,
pickup_service_zone
)
AS
SELECT
LocationID,
borough,
zone,
service_zone
FROM
presentation_layer.dim_location;
CREATE OR REPLACE VIEW reporting_layer.dropoff_location(
dropoff_location_key,
dropoff_borough,
dropoff_zone,
dropoff_service_zone
)
AS
SELECT
LocationID,
borough,
zone,
service_zone
FROM
presentation_layer.dim_location;