I have individual indexes on, say, columns A, B and C. I'd like to create a composite index on the three columns A+B+C.
What impact will my existing indexes have on composite index creation? Will the database take advantage of them, are they irrelevant, or will they slow down the creation of my new composite index?
I'm using MySql 5.1.
EDIT: BTW the table has several million rows.
EDIT 2: thanks to tster for the suggestion: I tried this out on a much smaller table (admittedly just 20,000 rows) but even so the creation of a new composite index took noticeably longer when the individual indexes were already present.