4> IF EXISTS ( SELECT name5> FROM sysobjects6> WHERE name = N'Players'7> AND type = 'U'8> )9> DROP TABLE Players10> GO1>2> create table Players (3> Id int IDENTITY (1, 1) NOT NULL4> )5> GO1>2> drop table Players3> GO1>