sql 视图,临时表,CTE,派生表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 视图,临时表,CTE,派生表相关的知识,希望对你有一定的参考价值。

create view view1 as (select * from product)
##gets saved into database

select * into #temptable1 from product
##gets saved into temporary database
## creating a local temporary table using a single # pound sign.
## if you use two pound signs '##' a global table will be created which can be
accessed from other connections







We use derived tables all the time when u use subquery and rename it.
scope: only within that sql code

以上是关于sql 视图,临时表,CTE,派生表的主要内容,如果未能解决你的问题,请参考以下文章

为啥 CTE 比游标/派生表/子查询/临时表等更好?

Hive 公用表表达式 CTE 使用指南

SQL Server 公用表表达式(CTE)实现递归

SQL Server 公用表表达式(CTE)实现递归

SQL 使用临时表创建视图

sql server中的cte