a,b,c三个表
a,b表1500+数据
c表6W数据select a.id
from a
left join b on b.a_id=a.id
left join c on b.no = c.no就这么简单的查询接近9S1 SIMPLE a index id 4 1525 Using index
1 SIMPLE b index card_no 156 1617 Using where; Using index; Using join buffer (Block Nested Loop)
1 SIMPLE c index device_id 142 61007 Using where; Using index; Using join buffer (Block Nested Loop)参考手册中MySQL如何优化LEFT JOIN和RIGHT JOIN——看了也没明白,还不是很懂比如:在left join c on b.no = c.no and DATE_FORMAT(c.create_date, '%Y-%m-%d') = DATE_FORMAT(now(), '%Y-%m-%d') 
也没效果。求明白人指点该如何提高查询速度,求告知如何设置 减少最内层(c表6W多次)的循环次数