ALTER TABLE COMMENT
This statement is used to modify the comment of an existing table. The operation is synchronous, and the command returns to indicate completion.
grammar:
ALTER TABLE [database.]table alter_clause;
grammar:
MODIFY COMMENT "new table comment";
grammar:
MODIFY COLUMN col1 COMMENT "new column comment";
ALTER TABLE table1 MODIFY COMMENT "table1_comment";
ALTER TABLE table1 MODIFY COLUMN col1 COMMENT "table1_col1_comment";
ALTER, TABLE, COMMENT, ALTER TABLE