首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

sql server 2008 临时表,该如何处理

2012-09-19 
sql server 2008 临时表select username into ##temptbfrom (select username from huifubiao where huifu

sql server 2008 临时表
select username into ##temptb from (select username from huifubiao where huifuid=1) select username from ##temptb

虽然我上面写的不正确,但相信大家看到后都知道我的意思,所以请告诉我,正确写法

[解决办法]
select username into ##temptb 
from (select username from huifubiao where huifuid=1) t

select username from ##temptb
 
像这个没必要临时表了
[解决办法]

SQL code
--加个别名就可以了select username into ##temptb from (select username from huifubiao where huifuid=1)t select username from ##temptb 

热点排行