have comment for table in MySQL workbench -


i create table in mysql workbench don't have comment there way have ??? notice : want comment table not column

create comment on table

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

display comments by:

show table status name='table_name'; 

edit

alter table test_comments comment = 'another comment'; 

Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -