MySQL指定使用某个索引查询语句
查询语句查询emp_no,所以先查询emp_no的索引使用primary
select emp_no,salary from salaries use index(s_f_t) where emp_no<11010 and salary<60000
查询语句查询emp_no,所以先查询emp_no的索引使用primary
select emp_no,salary from salaries use index(s_f_t) where emp_no<11010 and salary<60000