“mysql matar” Código de respuesta

Lista de procesos mysql de matar a granel

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

mysql matar

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

mysql matar

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

Respuestas similares a “mysql matar”

Preguntas similares a “mysql matar”

Más respuestas relacionadas con “mysql matar” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código