Mysql - How to add comments on table field name, Adding comments to mysql filename

How to add comments on table field name

You would have experience adding comments on a program or on script. But you can also add comment to a mysql field is as below

 alter table table_name change column_name field_name tinyint(3) 'your comment on this field';  

This will help you to add comment on the files.

The topic on Mysql - How to add comments on table field name is posted by - Math

Hope you have enjoyed, Mysql - How to add comments on table field nameThanks for your time

Tech Bluff