2019-01-29から1日間の記事一覧

インデックス作成

DB

Oracle create index ind1 on tab1(col1);create index ind21 on tab2(col2); MySQL alter table tab7 add primary key(col1);alter table tab7 add index ind71 (col2);alter table tab7 add unique ind72(col3); alter table tab6 add index ind63(col2); …