I can come up with a crude way of getting all current datatypes, but
it's not really futureproof. I'm not even certain that is works on all
installations, but it works on mine:
use mysql;
SELECT name
FROM help_topic
WHERE (help_category_id = 1 AND name NOT LIKE '% %')
AND (help_category_id = 1 AND name NOT LIKE '%\_%')
ORDER
BY name;
How will you know whether the new datatype should be quoted/
escaped/.....?