Not sure what you mean there, so might as well cover the whole subject of comments.
Anything enclosed between /* ... */ is treated as a comment, as is anything between a # and the end of the line, for example:[tt]
SELECT fld1,fld2 /* comment */ FROM tbl1 # comment[/tt]
Comments can also be associated with table columns, and stored in the table definition, for later retrieval. For example:[tt]
CREATE TABLE tbl1
(
id CHAR(4) PRIMARY KEY,
name CHAR(20) NOT NULL,
dateofbirth DATE NOT NULL COMMENT 'zero means the person is dead'
);[/tt]
Those comments will then be shown if you do a SHOW CREATE TABLE query.