Computer Science, asked by tarunthapa7965, 3 months ago

Which query will remove this primary key constraint of admission no. in the student table

Answers

Answered by profdambaldor
2

Answer:

ALTER TABLE `mytable` CHANGE COLUMN `id` `id` INT(11) NOT NULL, DROP PRIMARY KEY;

Explanation:

Similar questions