show processlist
#杀掉ID为1的线程, 关闭连接
kill 1;
#杀掉正在执行的ID为1的线程, 不关闭连接
kill query 1;
#查询出时间大于10的线程, 复制查询结果,批量执行
select concat('kill ', id, ';') from information_schema.processlist where time > 10
#杀掉ID为1的线程, 关闭连接
kill 1;
#杀掉正在执行的ID为1的线程, 不关闭连接
kill query 1;
#查询出时间大于10的线程, 复制查询结果,批量执行
select concat('kill ', id, ';') from information_schema.processlist where time > 10
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。