sql创建临时表并且插入数据

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

 

posted @ 2017-07-29 10:01  科技改变未来☆  阅读(2863)  评论(0编辑  收藏  举报