Skip to content

Commit

Permalink
added data to table 8 for 2012 and 2022
Browse files Browse the repository at this point in the history
  • Loading branch information
p3t3r67x0 committed May 9, 2024
1 parent 165fe3f commit 913ba0d
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions data/flensburg_sozialatlas.sql
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ INSERT INTO residents_age_18_to_under_65_by_districts (year, district_id, reside



/* TABELLE 8 PERSONEN 65 JAHRE UND ÄLTER IN STADTTEILEN 2011,2017-2021 */
/* TABELLE 8 PERSONEN 65 JAHRE UND ÄLTER IN STADTTEILEN 2011,2012 2017-2022 */
DROP TABLE IF EXISTS residents_age_65_and_above_by_districts;

CREATE TABLE IF NOT EXISTS residents_age_65_and_above_by_districts (
Expand All @@ -774,95 +774,121 @@ CREATE INDEX IF NOT EXISTS residents_age_65_and_above_by_districts_year_district

INSERT INTO residents_age_65_and_above_by_districts (year, district_id, residents) VALUES
(2011, 1, 382),
(2012, 1, 382),
(2017, 1, 407),
(2018, 1, 421),
(2019, 1, 420),
(2020, 1, 419),
(2021, 1, 413),
(2022, 1, 396),

(2011, 2, 374),
(2012, 2, 366),
(2017, 2, 355),
(2018, 2, 368),
(2019, 2, 376),
(2020, 2, 380),
(2021, 2, 369),
(2022, 2, 370),

(2011, 3, 1720),
(2012, 3, 1769),
(2017, 3, 1910),
(2018, 3, 1918),
(2019, 3, 1919),
(2020, 3, 1946),
(2021, 3, 1942),
(2022, 3, 1952),

(2011, 4, 1885),
(2012, 4, 1887),
(2017, 4, 1966),
(2018, 4, 1951),
(2019, 4, 1952),
(2020, 4, 1958),
(2021, 4, 1990),
(2022, 4, 1961),

(2011, 5, 1305),
(2012, 5, 1318),
(2017, 5, 1268),
(2018, 5, 1267),
(2019, 5, 1259),
(2020, 5, 1296),
(2021, 5, 1291),
(2022, 5, 1295),

(2011, 6, 1154),
(2012, 6, 1191),
(2017, 6, 1419),
(2018, 6, 1430),
(2019, 6, 1436),
(2020, 6, 1453),
(2021, 6, 1484),
(2022, 6, 1538),

(2011, 7, 857),
(2012, 7, 809),
(2017, 7, 724),
(2018, 7, 709),
(2019, 7, 724),
(2020, 7, 714),
(2021, 7, 714),
(2022, 7, 731),

(2011, 8, 1112),
(2012, 8, 1122),
(2017, 8, 1120),
(2018, 8, 1121),
(2019, 8, 1131),
(2020, 8, 1100),
(2021, 8, 1062),
(2022, 8, 1060),

(2011, 9, 1447),
(2012, 9, 1433),
(2017, 9, 1376),
(2018, 9, 1388),
(2019, 9, 1439),
(2020, 9, 1441),
(2021, 9, 1446),
(2022, 9, 1494),

(2011, 10, 1375),
(2012, 10, 1386),
(2017, 10, 1600),
(2018, 10, 1593),
(2019, 10, 1638),
(2020, 10, 1647),
(2021, 10, 1644),
(2022, 10, 1646),

(2011, 11, 3926),
(2012, 11, 4020),
(2017, 11, 4187),
(2018, 11, 4233),
(2019, 11, 4269),
(2020, 11, 4311),
(2021, 11, 4386),
(2022, 11, 4381),

(2011, 12, 1499),
(2012, 12, 1519),
(2017, 12, 1672),
(2018, 12, 1671),
(2019, 12, 1694),
(2020, 12, 1699),
(2021, 12, 1712),
(2022, 12, 1748),

(2011, 13, 682),
(2012, 13, 681),
(2017, 13, 739),
(2018, 13, 755),
(2019, 13, 789),
(2020, 13, 848),
(2021, 13, 910);
(2021, 13, 910),
(2022, 13, 911);



Expand Down

0 comments on commit 913ba0d

Please sign in to comment.