How to Kill a MySQL Query

mysql> show processlist;

mysql> show full processlist;

mysql> kill query "number from first column"

[OR]

mysql> kill "number from first column";

From here: https://stackoverflow.com/questions/3787651/how-can-i-stop-a-running-mysql-query


Comments