when run this code the if statement not work and always give the error There is already an object named 'Basic_Statistics' in the database.-------------- Create the basic tble---------------IF OBJECT_ID ('dbo.Basic_Statistics','U') IS NULLcreate table Basic_Statistics(BS_ID tinyint identity(1,1),BS_TableName varchar(100),BS_ColumnName varchar(100),BS_Type varchar(100))-------------------- Create secondroy statisticsIF OBJECT_ID ('dbo.Secnd_Statistics','U') IS NULLcreate table Secnd_Statistics(Sec_BS_ID tinyint identity(1,1),Sec_Value varbinary(100))
how can I fix that please