set @a='test';
explain select * from tabl1 where col1=@a;
ubuntu下可以提示使用索引
但在windows server 2008下
就没有提示使用索引。
另外在存储过程中,在ubuntu下可以跑得sql代码,到windows下很慢,查看是不使用索引的缘故。
在存储过程中有
insert into table2 select * from table1 where col1=_var;
对于这个_var变量,在windows并不使用索引。
早上把mysql服务重启了一下然后
set @a='test';
explain select * from tabl1 where col1=@a 不使用的索引的情况没了。
但是在存储过程中
declare _area varchar(10);set _aera='area_test';explain select * from temp_cell a where a.area=_area;
还是不使用索引。
然后我就改用
set _stat=CONCAT('explain select * from temp_cell a where a.area=\'',_area,'\''); PREPARE STMT FROM _stat;EXECUTE STMT;DEALLOCATE PREPARE STMT;
把任务给跑了~
慕虎7371278