SQL 使用临时表创建视图

Posted

技术标签:

【中文标题】SQL 使用临时表创建视图【英文标题】:SQL creating a view with a temp table 【发布时间】:2021-09-23 00:32:04 【问题描述】:

我需要一些帮助来从临时表创建视图。我对 SQL 还很陌生,所以我不明白在尝试创建视图时发送给我的错误消息。

错误信息:

SQL 错误 [42P07]:错误:关系“percent_pop_vax”已存在。

我还没有从临时表创建视图,所以我不知道为什么会这样。我使用了CTE 方法,这似乎有效。请帮助我了解如何将临时表用于视图。谢谢!

-- Using Temp Table to perform Calculation on Partition By in the previous query.
DROP Table if exists percent_pop_vax
Create Table percent_pop_vax(Continent varchar(255),
    Location varchar(255), Date date, Population numeric,
    New_vaccinations numeric, rolling_vaccinations numeric)
Insert into percent_pop_vax
Select dea.continent, dea.location, dea.date, dea.population, 
    vax.new_vaccinations, SUM(vax.new_vaccinations)
OVER(Partition by dea.Location Order by dea.location, dea.Date
) as rolling_vaccinations
From public.Covid_deaths dea
Join public.Covid_vax vax
    On dea.location = vax.location and dea.date = vax.date
where dea.continent is not null

Select *, (rolling_vaccinations/population)*100 AS
    rolling_vax_for_populations
From percent_pop_vax

-- Creating View to store data for later visualizations
CREATE VIEW percent_pop_vax AS
Select dea.continent, dea.location, dea.date, dea.population, 
    vax.new_vaccinations, SUM(vax.new_vaccinations)
OVER(Partition by dea.Location Order by dea.location, dea.Date)
    as rolling_vaccinations
From public.Covid_deaths dea
Join public.Covid_vax vax
    On dea.location = vax.location and dea.date = vax.date
where dea.continent is not null

【问题讨论】:

【参考方案1】:

你在做两件事:

    您创建一个表 percent_pop_vax 并用查询结果填充它

    您创建由同一查询定义的视图percent_pop_vax

这不行,因为表和视图占用相同的命名空间,所以不能有同名的表和视图(在同一个模式中)。

在我看来,您应该简单地省略第 1 步,只创建视图。视图只是一个带有名称的 SQL 查询,每当您使用视图时,都会执行查询以动态计算数据。表是相当多余的。

如果你想要一个像表格一样实际存储数据的视图,你需要一个物化视图

【讨论】:

以上是关于SQL 使用临时表创建视图的主要内容,如果未能解决你的问题,请参考以下文章

postgres - 使用提供临时表的函数创建视图

SQL-视图与存储过程

mysql 视图

SQL如何把查询出来的多个表创建成一个临时表

调整SQL Server中的大型查询

mysql(二)