2020-11-28から1日間の記事一覧

インデックス名前空間

DB

MySQL (8.0.21) drop table tab1;drop table tab2; create table tab1(col1 int);create table tab2(col1 int); create index ind1 on tab1(col1);create index ind1 on tab2(col1); →インデックス名はテーブルごとにローカル Oracle (19c) drop table tab1 …