select column_name,column_comment from INFORMATION_SCHEMA.columns where table_name='my_table';
或者
show full columns from my_table
其中my_table为具体的表名。
2023-07-26 14:49:16
select column_name,column_comment from INFORMATION_SCHEMA.columns where table_name='my_table';
或者
show full columns from my_table
其中my_table为具体的表名。