Out of sort memory, consider increasing server sort buffer size
MYSQLの設定でソートメモリサイズを増やせばいいらしいが
使用メモリが大きいということは使うものだけ取得という形で減らせばOKになる可能性もある
select * from table_xxxx
↓
select xxxx,vvv,ccc,xxxi from table_xxxx
Out of sort memory, consider increasing server sort buffer size
MYSQLの設定でソートメモリサイズを増やせばいいらしいが
使用メモリが大きいということは使うものだけ取得という形で減らせばOKになる可能性もある
select * from table_xxxx
↓
select xxxx,vvv,ccc,xxxi from table_xxxx