Because I see a lot of processes there, and the \"time\" column shows big values for all of them.
This snipped worked for me (MySQL server 5.5) to kill all MySQL processes :
mysql -e "show full processlist;" -ss | awk '{print "KILL "$1";"}'| mysql