How to read & update MySQL table column comments
So why would you wanna do that? Cuz you can store info in the comments that can be read out and feed automated CMS systems
SELECT COLUMN_COMMENT
FROM information_schema.COLUMNS
WHERE TABLE_SCHEMA = 'simpl_example' AND TABLE_NAME = 'your_table_name';
MySQL table > column comments
Jun, 18 -- Categories: MySQL