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

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

DB

MySQL (8.0.22) -- データ準備drop table tab1;drop table tab2; create table tab1(col1 int,col2 int);create table tab2(col1 int,col2 int); drop procedure proc1;delimiter //create procedure proc1(in p1 integer)begin declare i int; set i = 1; w…