Answers for "how to drop primary key constraint in mysql"

SQL
2

drop all foreign key constraints mysql

SET foreign_key_checks = 0;
Posted by: Guest on June-26-2020
1

mysql drop key

ALTER TABLE tbl_quiz_attempt_master
  DROP INDEX `PRIMARY`;
Posted by: Guest on May-27-2020

Code answers related to "how to drop primary key constraint in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language