I have been checking the MySQL Documentation for ALTER TABLE and it does not seem to include a way to add or modify a comment to a column. How can I do this?
-- for table ALTER TABLE myTable COMMENT 'Hello World' -- for columns -- ???
try:
ALTER TABLE `user` CHANGE `id` `id` INT( 11 ) COMMENT 'id of user'
1.4m articles
1.4m replys
5 comments
57.0k users