You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
635 B

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Area]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Area]
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[AreaKK]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[AreaKK]
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[BM_Config]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[BM_Config]
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[BM_PavilionType]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[BM_PavilionType]
GO