标签:dex proc fas 列表 from order _for 集中 高效
1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。
select id from t where substring(name,1,3)=‘abc‘ --name以abc开头的id
select id from t where datediff(day,createdate,‘2005-11-30‘)=0--‘2005-11-30’生成的id
应改为:
select id from t where name like ‘abc%‘
select id from t where createdate>=‘2005-11-30‘ and createdate<‘2005-12-1‘
标签:dex proc fas 列表 from order _for 集中 高效
原文地址:http://www.cnblogs.com/itsharehome/p/6160780.html