在SQL Server中如何用SQL语句建立一张临时表
3个回答
2013-08-16
展开全部
create table #t(
id int,
type varchar(20),
name varchar(20),
num int)
go
insert into #t
select '1','a','a1','0' union all
select '2','a','a2','1' union all
select '3','a','a3','2' union all
select '4','b','b1','0' union all
select '5','b','b2','1' union all
select '6','c','c1','0' union all
select '7','c','c2','1' union all
select '8','c','c3','2' union all
select '9','c','c4','3' union all
select '10','c','c5','4' select * from #t
id int,
type varchar(20),
name varchar(20),
num int)
go
insert into #t
select '1','a','a1','0' union all
select '2','a','a2','1' union all
select '3','a','a3','2' union all
select '4','b','b1','0' union all
select '5','b','b2','1' union all
select '6','c','c1','0' union all
select '7','c','c2','1' union all
select '8','c','c3','2' union all
select '9','c','c4','3' union all
select '10','c','c5','4' select * from #t
推荐于2017-06-16
展开全部
把【表1】的数据重新插入一张新表【表2】select 列1,列2,..,.. (列自己定义)
into 表2(可以作为临时表)
from 表1(这个表存在的)
into 表2(可以作为临时表)
from 表1(这个表存在的)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
create table #临时表名(剩下的和建立普通表是一样的)
select 字段s.. into #临时表名 from ...
select 字段s.. into #临时表名 from ...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询