Baselight

Countrywise COVID Cases

Country wise COVID patients total numbers

@kaggle.sunayanagawde_countrywise_covid_cases

Country Wise Covid Cases
@kaggle.sunayanagawde_countrywise_covid_cases.country_wise_covid_cases

  • 11.98 KB
  • 212 rows
  • 6 columns
country_name

Country Name

total_infected

Total Infected

total_deaths

Total Deaths

total_recovered

Total Recovered

death

Death %

recovered

Recovered %

USA47916190783565379183011.679.1
India34447536463655338497851.398.3
Brazil21957967611318211513422.896.3
UK956109914289878252001.581.8
Russia910909425659778125572.885.8
Turkey84081667353178889590.993.8
France728764511815470090261.696.2
Iran604521212827257082532.194.4
Argentina530574211623251721932.297.5
Spain50471568767348898011.796.9

CREATE TABLE country_wise_covid_cases (
  "country_name" VARCHAR,
  "total_infected" BIGINT,
  "total_deaths" BIGINT,
  "total_recovered" DOUBLE,
  "death" DOUBLE,
  "recovered" DOUBLE
);

Share link

Anyone who has the link will be able to view this.