mysql的order by导致很慢
解决方法:
我解决的方法是使用FORCE INDEX强制使用索引,为tcug_datetime字段新建一个名字为tcug_datetime的索引(Normal BTREE)
SELECTa.tcug_datetime FROM manage.tb_crm_files_gj a FORCE INDEX(tcug_datetime)
LEFT JOIN manage.tb_crm_files f ON f.crm_user_id = a.user_id
ORDER BY a.tcug_datetime DESC LIMIT 0,10
只适用于固定sql,不适用多条件模糊搜索