标签: mysql indexing
ALTER TABLE人员ADD INDEX(姓氏,名字);
SELECT id FROM people WHERE firstname =' Name';
为什么这个选择不使用索引?