Skip to content

Commit

Permalink
added data to table 23 for 2022 and fixed 2021
Browse files Browse the repository at this point in the history
  • Loading branch information
p3t3r67x0 committed May 14, 2024
1 parent f6746f3 commit 2e8f380
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions data/flensburg_sozialatlas.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1749,20 +1749,21 @@ INSERT INTO debt_counseling_residents (year, household_type_id, residents) VALUE
(2022, 7, 61);


/* TABELLE 23 HILFEN ZUR ERZIEHUNG */

/* TABELLE 23 HILFEN ZUR ERZIEHUNG 2017-2022 */
DROP TABLE IF EXISTS child_education_support CASCADE;

CREATE TABLE IF NOT EXISTS child_education_support (
"id" SERIAL,
"year" INT,
"educational_assistance" INT,
"parenting_counselor" INT,
"pedagogical_family_assistance" INT,
"child_day_care_facility" INT,
"full_time_care" INT,
"residential_education" INT,
"integration_assistance" INT,
"additional_support" INT,
id SERIAL,
year INT,
educational_assistance INT,
parenting_counselor INT,
pedagogical_family_assistance INT,
child_day_care_facility INT,
full_time_care INT,
residential_education INT,
integration_assistance INT,
additional_support INT,
PRIMARY KEY(id)
);

Expand All @@ -1773,4 +1774,5 @@ INSERT INTO child_education_support (year, educational_assistance, parenting_cou
(2018, 13, 45, 151, 22, 116, 123, 151, 7),
(2019, 7, 39, 154, 27, 106, 120, 141, 6),
(2020, 9, 31, 144, 25, 99, 145, 152, 3),
(2021, 3, 44, 148, 19, 95, 168, 149, 4);
(2021, NULL, 44, 148, 19, 95, 168, 149, 4),
(2022, NULL, 61, 155, 16, 103, 142, 184, 11);

0 comments on commit 2e8f380

Please sign in to comment.