How can I stop running a MySQL query?
Answers
Answered by
1
You need to run following command to kill the process. > show processlist; > kill query processId; Query parameter specifies that we need to kill query command process. Ctrl-C can similarly be used to stop an UPDATE query.
Similar questions