语句一:SELECT entity_id FROM app_hot_games  WHERE is_update= 0 AND is_need_update IN(1,0) AND size_status = 'small' ORDER BY seq DESC LIMIT 100
语句二:SELECT entity_id FROM app_hot_games  WHERE is_update= 0 AND is_need_update = 1 AND size_status = 'small' ORDER BY seq DESC LIMIT 100我现在有两个索引,第一个所以index1 (is_update.is_need_update,size_status,seq)第二个索引index2(seq)为什么语句一命中index2  语句二 命中index1  , 我预想 两个都命中index1