diff --git a/org/woehlke/covid19/europe/europe_model.py b/org/woehlke/covid19/europe/europe_model.py
index 858f5ba6ad7c923353acc25e78854c019e913059..faf1ab5719843c30888f1c4969a7a38d49602e17 100644
--- a/org/woehlke/covid19/europe/europe_model.py
+++ b/org/woehlke/covid19/europe/europe_model.py
@@ -44,6 +44,31 @@ class EuropeDataImportTable(db.Model):
         sql = "select distinct continent_exp from europe_data_import order by continent_exp asc"
         return db.session.execute(sql)
 
+    @classmethod
+    def get_countries_of_continent(cls, my_continent):
+        my_continent_exp = my_continent.continent_exp
+        sql = """
+        select distinct
+            countries_and_territories,
+            geo_id,
+            country_territory_code,
+            pop_data_2019,
+            continent_exp
+        from
+            europe_data_import
+        group by
+            countries_and_territories,
+            geo_id,
+            country_territory_code,
+            pop_data_2019,
+            continent_exp
+        having
+            continent_exp = :my_continent_exp
+        order by
+            countries_and_territories
+        """
+        return db.session.execute(sql, my_continent_exp=my_continent_exp)
+
 
 class EuropeDateReported(db.Model):
     __tablename__ = 'europe_date_reported'
@@ -105,8 +130,8 @@ class EuropeCountry(db.Model):
     geo_id = db.Column(db.String(255), nullable=False)
     country_territory_code = db.Column(db.String(255), nullable=False)
 
-    europe_continent_id = db.Column(db.Integer, db.ForeignKey('europe_continent.id'), nullable=False)
-    europe_continent = db.relationship('EuropeContinent', lazy='joined')
+    continent_id = db.Column(db.Integer, db.ForeignKey('europe_continent.id'), nullable=False)
+    continent = db.relationship('EuropeContinent', lazy='joined')
 
     @classmethod
     def remove_all(cls):
diff --git a/org/woehlke/covid19/europe/europe_service_update.py b/org/woehlke/covid19/europe/europe_service_update.py
index 43e2fb41253b0781164ff7b60c9d22234da5b495..a818f8bfe10d5c4c1c25c0c42290accd6da07b52 100644
--- a/org/woehlke/covid19/europe/europe_service_update.py
+++ b/org/woehlke/covid19/europe/europe_service_update.py
@@ -1,7 +1,8 @@
 import os
 import psycopg2
 from database import db, app
-from org.woehlke.covid19.europe.europe_model import EuropeDataImportTable, EuropeDateReported, EuropeContinent
+from org.woehlke.covid19.europe.europe_model import EuropeDataImportTable, \
+    EuropeDateReported, EuropeContinent, EuropeCountry
 
 
 class EuropeServiceUpdate:
@@ -57,7 +58,19 @@ class EuropeServiceUpdate:
     def __update_country(self):
         app.logger.info(" __update_country [begin]")
         app.logger.info("------------------------------------------------------------")
-        app.logger.info(" ... ")
+        EuropeCountry.remove_all()
+        all_continents = EuropeContinent.get_all()
+        for my_continent in all_continents:
+            result_countries_of_continent = EuropeDataImportTable.get_countries_of_continent(my_continent)
+            for c in result_countries_of_continent:
+                o = EuropeCountry(
+                    countries_and_territories=c['countries_and_territories'],
+                    geo_id=c['geo_id'],
+                    country_territory_code=c['country_territory_code'],
+                    pop_data_2019=c['pop_data_2019'],
+                    continent=my_continent)
+                db.session.add(o)
+            db.session.commit()
         app.logger.info(" __update_country [done]")
         app.logger.info("------------------------------------------------------------")
         return self