MySQL - multiple column index
问题 I'm learning MySQL index and found that index should be applied to any column named in the WHERE clause of a SELECT query. Then I found Multiple Column Index vs Multiple Indexes. First Q, I was wondering what is multiple column index. I found code bellow from Joomla, is this Multiple Column Index? CREATE TABLE `extensions` ( `extension_id` INT(11) NOT NULL AUTO_INCREMENT, `name` VARCHAR(100) NOT NULL, `type` VARCHAR(20) NOT NULL, `element` VARCHAR(100) NOT NULL, `folder` VARCHAR(100) NOT NULL