ここでこれを選択します:
select parent_id from sales_flat_order_status_history where status like '%whatever%' group by parent_id having count(parent_id) > 1
このクエリは数秒しか実行されません。次のように、別の選択で使用したいと思います。
select increment_id from sales_flat_order where entity_id in(
select parent_id from sales_flat_order_status_history where status like '%whatever%' group by parent_id having count(parent_id) > 1)
これは永久に実行されるため、ID を 1 つずつ挿入してみました。
select increment_id from sales_flat_order where entity_id in(329,523,756,761,763,984,1126,1400,1472,2593,3175,3594,3937,...)
これは高速に実行されます。違いはどこにあり、どうすれば最初のアプローチをより高速に動作させることができますか?
ありがとう!