I cannot find my CREATE VIEW table after refreshing even after "Commands completed successfully." message. (SQL)
–Creating View to store data for later visualizations CREATE VIEW PeopleVaccinatedpercent AS SELECT dea.continent, dea.location, dea.date, dea.population, vac.new_vaccinations ,SUM(cast(new_vaccinations as bigint)) OVER (Partition by dea.location ORDER BY dea.location, dea.date) AS RollingPeopleVaccinated FROM PortofolioProject..CovidDeaths dea JOIN PortofolioProject..CovidVaccination vac ON dea.location = vac.location and dea.date = vac.date WHERE dea.continent is not null Commands completed successfully. After Refreshing… Read More I cannot find my CREATE VIEW table after refreshing even after "Commands completed successfully." message. (SQL)