my table structure is as given below
create table qwe
(
id int primary key,
employee varchar(100)
)
How to delete Primary key from the ID column . I have tried the following :
alter table qwe
alter column id int
I know I can remove this key by going into design mode, but is there a way to delete using SQL statement.