SQL Server 两种判断表名是否存在且删除的方式

  邓老师(老邓)教的

if exists(select * from sysobjects where name='Table_88')
    drop table Table_88

 偷的((*^__^*) 嘻嘻……)

    if exists (select * from sys.objects 
    where object_id = object_id(N'Table_1') 
              and type in (N'U')) 
    drop table Table_1
原文地址:https://www.cnblogs.com/Luoma_HaoWei/p/3243730.html