if object_id(N'tablename',N'U') is not null
drop table tablename
go
if exists (select * from sysobjects where id = object_id(N'[dbo].[tbname]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[tbname]
go
2023-12-03 14:39:34
if object_id(N'tablename',N'U') is not null
drop table tablename
go
if exists (select * from sysobjects where id = object_id(N'[dbo].[tbname]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[tbname]
go