COVID-19 India
Ministry of Health and Family Welfare Website Data
@kaggle.shivanshsinghal107_covid19_india_dataset
Ministry of Health and Family Welfare Website Data
@kaggle.shivanshsinghal107_covid19_india_dataset
The data will be updated in every 24 Hrs
Each row represents the cases of respective State/UT in the latest 24 Hrs.
Each column represents Number of Active, Confirmed, Deaths, and Recovered cases in respective States/UT of India.
https://www.mohfw.gov.in/ & https://www.mygov.in/corona-data/covid19-statewise-status/
CREATE TABLE covid_india (
  "s_no" BIGINT  -- S. No.,
  "name_of_state_ut" VARCHAR  -- Name Of State / UT,
  "active_cases" BIGINT,
  "cured_discharged_migrated" BIGINT,
  "deaths" BIGINT,
  "total_confirmed_cases" BIGINT
);Anyone who has the link will be able to view this.