Eu criei uma chave estrangeira (no SQL Server): alter table company add CountryID varchar(3); alter table company add constraint Company_CountryID_FK foreign key(CountryID) references Country; Em seguida, executei esta consulta: alter table company drop column CountryID; e recebo este erro:...