I want to create a table "table_min_date_100d_per_country"
which contains the first date where the cumulation by date of COVID cases exceeds 100 per country.
I have the columns date
, cas_covid
, country
.
Sample data is..
Date Cas_covid country
2019-12-31 10 France
2020-01-01 15 France
2020-01-02 45 France
2020-01-03 5 France
2020-01-04 15 France
2020-01-05 11 France
The output is
2020-01-05 COVID cases = 101 country = France
Thanks.