我在MySQL工作台中创建了一些表,但他们现在没有评论有没有办法让它? 注意:我想要表格而不是列
的评论答案 0 :(得分:0)
答案 1 :(得分:0)
在表格上创建评论
create table (...) comment='table_comment';
按以下方式显示评论:
show table status where name='table_name';
修改
ALTER TABLE test_comments COMMENT = 'another comment';