”可以使用 COMMENT选项指定列的注释。注释由 SHOW CREATE TABLE和 SHOW FULL COLUMNS语句显示。这个选项在 MySQL 4.1中是可操作的。(在早期版本中,这是允许的,但被忽略了。)”
举个例子
--
-- 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;