我在MySQL工作台中创建了一些表,但他们现在没有注释,有没有办法有它?注意:我想要表而不是列的注释
发布于 2017-07-25 18:38:43
在表上创建注释
create table (...) comment='table_comment';按以下方式显示注释:
show table status where name='table_name';编辑
ALTER TABLE test_comments COMMENT = 'another comment';发布于 2017-07-25 18:38:33
https://stackoverflow.com/questions/45300731
复制相似问题