「Oracle」インデックスの作成、削除

インデックス作成
CREATE INDEX student_tbl_idx ON student(stuname);

インデックスを削除
DROP INDEX student_tbl_idx;

Oracle

Posted by arkgame