All the keys are named, you should be using something like below:
ALTER TABLE tbl_quiz_attempt_master
DROP INDEX index_name;
To drop the primary key you can use the following:
ALTER TABLE tbl_quiz_attempt_master
DROP INDEX `PRIMARY`;
Are you interested to learn SQL in detail? Sign up for the SQL Training course by Intellipaat.
For more details on MySQL, refer to the below MySQL Tutorial video.