标签:
--判断临时表是否存在 if exists(select * from tempdb.sysobjects where id=object_id(‘tempdb..#TEMP_TBL‘)) print ‘存在‘ else print ‘不存在‘ --判断数据表是否存在 if object_id(N‘tablename‘,N‘U‘) is not null print ‘存在‘ else print ‘不存在‘ END
标签:
原文地址:http://www.cnblogs.com/qiangshu/p/5774604.html