2021-03-23から1日間の記事一覧

外部結合による結合順の制約(NL)

DB

MySQL (8.0.18) -- データ準備drop table tab1;drop table tab2; create table tab1(col1 int,col2 int);create table tab2(col1 int,col2 int); create index ind12 on tab1(col2);create index ind22 on tab2(col2); alter table tab1 add constraint tab1…