mysql 索引建立 以及多表关联是建立索引优化速度

SELECT dd.jjcg,ddt.id,ddt.wzbm,ddt.wzmc,ddt.xhgg,ddt.jldw,ddt.sl,ddt.dhsj, dd.jhbh,dd.sbbmmc,dd.sbrxm,dd.sbrq,dd.xmxzmc,dgt.rksl,dgt.ylsl,dgt.klsl  
FROM dcwz_dpdetail_temp ddt  
LEFT JOIN dcwz_demandplan dd on dd.id = ddt.pid  
LEFT JOIN dcwz_getmaterial_temp dgt ON dgt.pid = ddt.id   
where dd.zt_id !=10 and dd.zt_id != 1  order by ddt.id desc  limit 0,10



创建索引

create index dcwz_getmaterial_temp_pid on dcwz_getmaterial_temp(pid);

针对关联的字段建立索引可以大幅提升查询速度

你可能感兴趣的:(mysql 索引建立 以及多表关联是建立索引优化速度)