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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
  • 2021-06-15
猜你喜欢
  • 2022-12-23
  • 2021-12-11
  • 2022-12-23
  • 2022-12-23
  • 2022-02-16
  • 2022-02-09
相关资源
相似解决方案