-
Which among the following is the correct syntax for modifying the definition of an existing table?
-
- ALTER TABLE person person_id SMALLINT UNSIGNED AUTO_INCREMENT;
- ALTER TABLE person
- ALTER TABLE person MODIFY person_id SMALLINT UNSIGNED AUTO_INCREMENT;
- ALTER TABLE person MODIFY person_id ;
- None of these
Correct Option: C
ALTER TABLE person MODIFY person_id SMALLINT UNSIGNED AUTO_INCREMENT;