where 条件的顺序影响查询速度
EXPLAIN select *,from_unixtime(sendtime) from sms where id='461539' and content like '13%'; /* 0 rows affected, 1 rows found. Duration for 1 query: 0.218 sec. */ EXPLAIN select *,from_unixtime(sendtime) from sms where content like '13%' and id='461539'; /* 0 rows affected, 1 rows found. Duration for 1 query: 0.717 sec. */
原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。