if object_id('hhhhhhh') is not null
drop table hhhhhh
go
create table hhhhhhh
(name varchar(50))
If i run the above statement i am getting the following errors.
can u explain why it's so
Server: Msg 3701, Level 11, State 5, Line 2
Cannot drop the table 'hhhhhh', because it does not exist in the system catalog.
Server: Msg 2714, Level 16, State 6, Line 1
There is already an object named 'hhhhhhh' in the database.