select replace(group_concat(concat(‘KILL ‘,id,‘;‘)), ‘,‘, ‘‘) from information_schema.processlist
where user=‘card‘ and db = ‘card‘ order by 1;
-- 找到 card 数据库 card 用户的所有连接, 然后把这个 id 和 kill 连起来, 然后得到一个 SQL语句, 再次执行这个新生成SQL, 会把当前用户的所有连接杀掉, 死锁会恢复, 不用重启服务器.原文:https://www.cnblogs.com/zh1903/p/14031934.html