I have created a foreign key (in SQL Server) by:
alter table company add CountryID varchar(3); alter table company add constraint Company_CountryID_FK foreig
You can also Right Click on the table, choose modify, then go to the attribute, right click on it, and choose drop primary key.
Try
alter table company drop constraint Company_CountryID_FK alter table company drop column CountryID