1. 程式人生 > >mysql批量刪除時間長的程序

mysql批量刪除時間長的程序

首先show processlist

條數太多不知道列名,根據其中id查詢,可以看到列名time

然後查時間長的

你可以複製,或者把結果直接導成檔案

select concat('KILL ',id,';') from information_schema.processlist where time>1000 into outfile '/tmp/a.txt';

然後再mysql中執行這個檔案就可以了

source /tmp/a.txt;