MySQL 오더로 인해 쿼리가 느리게 해결되지만 이유는 확실하지 않습니다. 다음 질문이 있습니다. select * from `twitter_posts` where `main_handle_id` in ( select `twitter`.`main_handle_id` from `users` inner join `twitter` on `twitter`.`user_id` = `user`.`id` where `users` LIKE 'foo' ) order by created_at by 순서를 사용하면 이 쿼리는 매우 느리게 실행됩니다.그twitter_posts테이블에는 인덱스가 있습니다.created_at타임스탬프와main_handle_id기둥. 엔진이 뭘 하려는지 알기 위해 "설명"을 사용했는데 파일 정렬이.....