码迷,mamicode.com
首页 > 数据库 > 详细

sql插入临时表数据的方法

时间:2017-02-22 13:32:59      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:image   varchar   blog   count   nbsp   alt   object   img   tmp   

方法有两种,主要看需求。

方法1:定义好临时表的字段和类型、插入对应的值

create table #Tmp --创建临时表#Tmp
(
    City   varchar(50),  --
    Country  varchar(50),   --
);

insert #Tmp
select 北京,中国 union
select 东京,日本 union
select 纽约,美国 

select * from #Tmp;

技术分享

 

方法2:直接将查询出来的表数据插入临时表中

if OBJECT_ID(tempdb..#temp) is not null
drop table #temp
select * into #temp from 
(
    --select * from Activity
    select 7 as month,25 as day
    union all
    select 7 as month,25 as day
    union all
    select 8 as month,25 as day 
    union all
    select 8 as month,25 as day
    union all
    select 8 as month,25 as day
 
) as A


select *  from #temp

技术分享

 

 欢迎顶....

sql插入临时表数据的方法

标签:image   varchar   blog   count   nbsp   alt   object   img   tmp   

原文地址:http://www.cnblogs.com/hmYao/p/6428256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!