mysql查看字段注释(帮助信息)指令
select column_name,column_comment from INFORMATION_SCHEMA.columns where table_name='my_table';
或者
show full columns from my_table
其中my_table为具体的表名。
select column_name,column_comment from INFORMATION_SCHEMA.columns where table_name='my_table';
或者
show full columns from my_table
其中my_table为具体的表名。
