Answers for "column comment mysql"

SQL
2

mysql show table column comments sql

/* mysql query for command line*/
SHOW FULL COLUMNS FROM "table_name";
Posted by: Guest on October-18-2021
0

mysql add comment to column

ALTER TABLE `user` CHANGE `id` `id` INT( 11 ) COMMENT 'id of user';
Posted by: Guest on September-16-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language