A table named STATES was created as follows:
CREATE TABLE states
(state_cd CHAR(2) NOT NULL,
state_desc CHAR(20));
CREATE UNIQUE INDEX indx1 ON states (state_cd);
if the following ALTER statement is executed:
ALTER TABLE states ADD PRIMARY KEY (state_cd);
What will happen?
Select one or more of the following: