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
2024-02-16 23:34:31
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