I know long way to change them but I have so many tables I have to edit. It takes so much time.
Does anyone know how to put them order by a practical way?
I know long way to change them but I have so many tables I have to edit. It takes so much time.
Does anyone know how to put them order by a practical way?
phpmyadmin に関する限り、何もありませんが、次のように SQL を介してプログラムで実行できます。
ALTER TABLE Table_Name_Here MODIFY COLUMN column4 int(11) AFTER column2
また
ALTER TABLE Table_Name_Here MODIFY COLUMN column4 int(11) FIRST
phpMyAdmin バージョン 4.0.0 以降、ドラッグ アンド ドロップで列の順序を簡単に並べ替えることができます。Move columns
テーブル構造ページのリンクをクリックし、ポップアップ ダイアログで列の順序を並べ替えます。