本文介绍了SQL中是否需要删除#temp表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,



情景如



Hi There,

Scenario like

SELECT x,y
INTO #Temp
FROM
(
    SELECT 1 AS x, 2 AS y
)src

SELECT * FROM #Temp





是否有必要删除此#Temp表?

如果#Temp表没有被删除会发生什么副作用是什么?



任何类型的帮助都是适当的



Is it necessary to delete this #Temp table?
What will happen If #Temp table is not dropped,What are the side effects ?

Any type of help would be appriciated

推荐答案


这篇关于SQL中是否需要删除#temp表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 07:49
查看更多