"You can specify a comment for a column using the COMMENT parameter. The comment is displayed by the SHOW CREATE TABLE and SHOW FULL COLUMNS statements. This parameter works with MySQL 4.1 (it is allowed but ignored in earlier versions.)"
As an example
-- -- Table structure for table 'accesslog' -- CREATE TABLE accesslog ( aid int(10) NOT NULL auto_increment COMMENT 'unique ID for each access entry', title varchar(255) default NULL COMMENT 'the title of the page being accessed', path varchar(255) default NULL COMMENT 'the local path of teh page being accessed', .... ) TYPE=MyISAM;
Dinesh Gehlot Feb 01 2018-12-01T00: 00Z
source share