■alter tableテーブルの構造を変更する。
フィールドの追加
alter table TEST_T add AGE_C int;
alter table TEST_T add AGE_C01 int first;
#最初のフィールドに追加する。
alter table TEST_T add AGE_C02 int after NAME_C;
#任意の位置に追加する。
■alter tableテーブルの構造を変更する。
フィールドの追加
alter table TEST_T add AGE_C int;
alter table TEST_T add AGE_C01 int first;
#最初のフィールドに追加する。
alter table TEST_T add AGE_C02 int after NAME_C;
#任意の位置に追加する。
フィールドの削除
alter table TEST_T drop AGE_C01;
■デフォルトを設定してフィールド作成。
create table TEST01 default "不明");
■alter tableテーブルの構造を変更する。
フィールドの追加
alter table TEST_T add AGE_C int;
alter table TEST_T add AGE_C01 int first;
#最初のフィールドに追加する。
alter table TEST_T add AGE_C02 int after NAME_C;
#任意の位置に追加する。
フィールドの削除
alter table TEST_T drop AGE_C01;
フィールドの変更
alter table TEST_T change AGE_C02 AGE_C00 int;
alter table TEST_T change AGE_C00 AGE_C00 varchar(2);
alter table TEST_T modify AGE_C00 int;
型だけ変更できる。
alter table java modify ID int not null primary key;
テーブル名の変更。
alter table TEST_T rename as NEWFRIEND_T;
順番を変える
ORDER BY col