回答:
「列COMMENTのコメントはオプションで指定できます。コメントはSHOW CREATE TABLEand 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;
/* comment here */
ここに例があります: SELECT 1 /* this is an in-line comment */ + 1;
--