8.テーブルを操作する

■テーブル名の変更
mysql> alter table テーブル名(現在) rename as テーブル名(新);
例)mysql> alter table ex_teable rename as ex_table_new;

■テーブルの削除
mysql> drop table テーブル名;
例)mysql> drop table ex_table;

戻る | CGI'sトップへ戻る