When set to option Top Commenters in backend module parameters, mod_k2_comments throws up an ugly SQL error.
This can be fixed by modifying /modules/mod_k2_comments/helper.php as follows:
around line 111, find
$query = "SELECT COUNT(id) as counter, userName, userID, commentEmail FROM #__k2_comments"." WHERE userID > 0"." AND published = 1";
" GROUP BY userID ORDER BY counter DESC";
and replace with
$query = "SELECT COUNT(id) as counter, userName, userID, commentEmail FROM #__k2_comments"." WHERE userID > 0"." AND published = 1"." GROUP BY userID ORDER BY counter DESC";
this replaces one semicolon with a period before "GROUP BY"