I am working with phpmyadmin.I created a table with one primary key and 5 fields. But now all the integer fields have turned into a primary key. I tried using drop command but i
Try this
ALTER TABLE tablename MODIFY fieldname INT NOT NULL; ALTER TABLE tablename DROP PRIMARY KEY;