How to Find and Delete Queries in MySQL

Every once in a while I need to find and delete some rogue queries in MySQL. Here is how to show the list of queries for the current user:

SHOW PROCESSLIST;

Once the correct query has been identified the query can be killed like this:

KILL QUERY <ID>