在MySQL工作台中对表进行评论

时间:2017-07-25 10:33:06

标签: mysql workbench

我在MySQL工作台中创建了一些表,但他们现在没有评论有没有办法让它? 注意:我想要表格而不是列

的评论

2 个答案:

答案 0 :(得分:0)

使用:

alter table <table_name>  comment "MyComment"

有关alter table的更多信息,请参阅mysql documentaion

答案 1 :(得分:0)

在表格上创建评论

create table (...) comment='table_comment';

按以下方式显示评论:

show table status where name='table_name';

修改

ALTER TABLE test_comments COMMENT = 'another comment';