select into 创建的表属于临时表,判断是否存在的方法

select c_adno,c_con_no into #temp from tb_contract

IF OBJECT_ID( 'tempdb..#temp') IS NOT NULL
Begin
DROP TABLE #temp
end

05-11 20:48