摘要:
create table #Left(EmpNo char(6),[hours] float) --if exists(select * from tempdb..sysobjects where id=object_id('tempdb..#Left')and type='U') if object_id('tempdb..#Left') is not null PRINT '存在' ELSE PRINT'不存在'drop table #Left 阅读全文
posted @ 2013-02-06 10:20
自由的企鹅
阅读(309)
评论(0)
推荐(0)