ahmedbeheri / Portfolio-Projects

0 stars 0 forks source link

Covid-19 Issue #1

Open ahmedbeheri opened 9 months ago

ahmedbeheri commented 9 months ago

Recieve This error when putting in the query below: "Msg 245, Level 16, State 1, Line 63 Conversion failed when converting the nvarchar value 'z' to data type int."

Select SUM(new_cases) as total_cases, SUM(cast(new_deaths as int)) as total_deaths, SUM(cast(new_deaths as int))/SUM(New_Cases)*100 as DeathPercentage From [Portfolio Project]..CovidDeaths --Where location like '%states%' where continent is not null --Group By date order by 1,2