Show the titles and the award amounts of 20 awards that contain words discover, discoverer, discovery, discovered, and discovering in their abstracts.
My query:
missing '' around discov and ORDER BY and WHERE are inversed:
ORDER BY
WHERE
SELECT title, count(award) AS count_award, abstract FROM table WHERE abstract LIKE 'discov%' GROUP BY title, abstract ORDER BY count_award DESC LIMIT 20