I want to sort the results in a descending order of the total number of times each statement has been executed.
Statements executed:
SELECT CONVERT (argument USING utf8)
FROM mysql.general_log
WHERE argument LIKE '%SELECT%'
OR argument LIKE '%INSERT%'
OR argument LIKE '%DELETE%'
OR argument LIKE '%UPDATE%';