forked from claimed-framework/component-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
covid19.sql
44 lines (30 loc) · 2.43 KB
/
covid19.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
drop view if exists cube cascade;
drop view if exists rki_covid_deaths_view
create or replace view owidcovid_view as SELECT to_date(owidcovid.date, '%YYYY-%MM-%DD'::text) AS "timestamp", extract(YEAR from to_date(owidcovid.date, '%YYYY-%MM-%DD'::text))::int as year,* FROM owidcovid;
create or replace view rki_covid_deaths_view as SELECT replace(t."anzahl verstorbene covid-19 fã¤lle",'<','1')::int as value , TO_DATE(CONCAT(sterbejahr, sterbewoche), 'IYYYIW') as timestamp FROM public.rki_covid_deaths t order by sterbejahr, sterbewoche asc;
create or replace view destatis6_view as
SELECT destatis6.zeit as year,
replace(destatis6."3_auspraegung_code", 'MONAT', '')::int as month,
to_date(concat(destatis6.zeit, replace(destatis6."3_auspraegung_code", 'MONAT', '')), '%YYYYMM'::text) AS "time",
sum((replace(destatis6.bev002__gestorbene__anzahl, '...', '0'))::int) AS value
--replace(destatis6.bev002__gestorbene__anzahl, '...', '0')::int AS value
FROM destatis6
group by year, month, time
order by time asc;
create or replace view destatis6_moments as
SELECT month, min(value) as minimum, avg(value)::int as average, max(value) as maximum from destatis6_view where year > 2000 and year < 2021 group by month ;
create or replace view destatis6_daterange as
select extract(MONTH from time)::int as month ,* from (SELECT * FROM generate_series('2019-01-01'::timestamp, '2022-03-04', '1 week') as time) as foo ;
create or replace view destatis6_moments_fused as
select m.*, dr.time from destatis6_moments m inner JOIN destatis6_daterange dr on m.month=dr.month;
drop table if exists facts;
create table facts as SELECT * FROM generate_series('1950-01-01'::timestamp, '2025-01-01', '1 day') as time ;
create or replace view cube as select f.*, m.minimum, m.maximum, m.average, v.value as deaths, rki.value as covid_deaths from facts f
left outer join destatis6_moments_fused m on f.time=m.time
left outer join destatis6_view v on f.time=v.time
left outer join rki_covid_deaths_view rki on f.time=rki.timestamp;
create or replace view cube_view as
/*
select time, COALESCE(minimum, 0 ) as minimum, COALESCE(maximum, 0 ) as maximum, COALESCE(average, 0) as average, COALESCE(deaths, 0) as deaths, COALESCE(covid_deaths, 0 ) as covid_deaths from (select distinct * from cube order by time asc) as t*/
select distinct * from cube order by time asc
;