08 2018 档案

摘要:--判断临时表是否存在,存在则删除重建if exists(select 1 from tempdb..sysobjects where id=object_id('tempdb..#tabName') and xtype='u')drop table #tabNamegocreate table # 阅读全文
posted @ 2018-08-16 09:19 vaejp