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
本文来自博客园,作者:沉迷编程的程序员,转载请注明原文链接:https://www.cnblogs.com/codeDevotee/p/7253721.html
欢迎各位找我代写程序,python、c#、web等都可以,加我请注明博客园微信:A15919195482