MySQLでたまに使うコマンド

tableのカラムのデータ表示

show columns from table_name;

カラムのデータサイズを取得

select length(column_name) from table_name;