“mysql membunuh” Kode Jawaban

Massal Bunuh Daftar Proses MySQL

SELECT CONCAT('KILL ',id,';') AS IDs
FROM information_schema.processlist 
WHERE TIME >10
AND command = "sleep"
Shiny Skipper

mysql membunuh

mysql> SELECT GROUP_CONCAT(CONCAT('KILL ',id,';') SEPARATOR ' ') 
 
FROM information_schema.processlist WHERE user <> 'system user';
Lucky Ladybird

mysql membunuh

-- 查询执行时间超过2分钟的线程,然后拼接成 kill 语句
select concat('kill ', id, ';')
from information_schema.processlist
where command != 'Sleep'
and time > 2*60
order by time desc
Exuberant Echidna

Jawaban yang mirip dengan “mysql membunuh”

Pertanyaan yang mirip dengan “mysql membunuh”

Lebih banyak jawaban terkait untuk “mysql membunuh” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya