Thank you, the following queries returned 0 records and columns so functions and keywords weren't retrieved
SELECT LOWER( name ) AS word FROM mysql.help_keyword ORDER BY word;
SELECT IF( category.name = 'Functions and Modifiers for Use with GROUP BY', 'Aggregate Functions', category.name ) AS fld_Category, topic.name AS fld_Procedure, topic.description AS fld_Description, topic.example AS fld_Example FROM mysql.help_topic topic JOIN mysql.help_category category ON category.help_category_id = topic.help_category_id WHERE category.help_category_id IN ( SELECT help_category_id FROM mysql.help_category WHERE `name` IN( 'Functions and Modifiers for Use with GROUP BY', 'Numeric Functions', 'Control flow functions', 'Encryption Functions', 'Logical operators', 'Miscellaneous Functions', 'Information Functions', 'Comparison operators', 'Bit Functions', 'Date and Time Functions', 'String Functions' ) ) ORDER BY 1;
What happens if you try to execute them in the SQL Editor?