Viewing post 1 (of 1 total)
This is awesome ya'll are doing this
if object_id('tempdb..#table') is not null drop table #table
go
select first_name, last_name, age
into #table
from (
select 'Chuck' as first_name, 'Norris' as last_name, '32' as age union...
December 9, 2013 at 11:32 am
#1672085