In a table of my database I made the unfortunate mistake of making a pair of fields unique when creating the database
UNIQUE(A,B)
I now want to remove this constraint. How can I do this in MySQL syntax?
I know for a single index I can do
ALTER TABLE MyTable DROP Index A
But I'm not sure how to do it for pairs.