select column_name,column_comment from INFORMATION_SCHEMA.columns where table_name=‘my_table‘;
或者
show full columns from my_table
其中my_table为具体的表名。
时间: 2024-10-27 05:15:05
select column_name,column_comment from INFORMATION_SCHEMA.columns where table_name=‘my_table‘;
或者
show full columns from my_table
其中my_table为具体的表名。