在 MySQL workbench 中对 table 发表评论
have comment for table in MySQL workbench
我在 MySQL workbench 中创建了一些 table 但是他们现在没有评论有什么办法吗???
注意:我想要评论 table 而不是列
使用:
alter table <table_name> comment "MyComment"
有关 alter table
的更多信息,请参阅 mysql documentaion
在 table
上发表评论
create table (...) comment='table_comment';
显示评论者:
show table status where name='table_name';
编辑
ALTER TABLE test_comments COMMENT = 'another comment';
我在 MySQL workbench 中创建了一些 table 但是他们现在没有评论有什么办法吗??? 注意:我想要评论 table 而不是列
使用:
alter table <table_name> comment "MyComment"
有关 alter table
的更多信息,请参阅 mysql documentaion
在 table
上发表评论create table (...) comment='table_comment';
显示评论者:
show table status where name='table_name';
编辑
ALTER TABLE test_comments COMMENT = 'another comment';