SQLインデックス操作
608 ワード
1.索引の作成
create index on ( );
2.索引の削除drop index ;
3.結合インデックスの作成create index on ( 1,, 2);
4.クエリーインデックス-- ,
select * from user_ind_columns where index_name=' ';
-- ,
select * from user_indexes where table_name=' ';
5.無効と再構築--
alter index INDEX_BMP_DUTY_H unusable;
-- ,
alter index INDEX_BMP_DUTY_H rebuild;
転載先:https://www.cnblogs.com/wyid/p/11282692.html