Jun 182009
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';
Sorry, the comment form is closed at this time.