判断临时表是否存在
Create Table  #tmpKeyWordLink
(
id 
int
)

  
if exists(select * from tempdb.dbo.sysobjects where id = object_id(N'tempdb..#tempKeyWordLink'and type='U')
     
drop table #tempKeyWordLink
 

 

相关文章:

  • 2022-12-23
  • 2021-10-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-08
  • 2021-11-02
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-11
  • 2022-02-16
  • 2021-12-07
相关资源
相似解决方案