一. 初始化SQL语句 /*join 建表语句*/ drop database if exists test; create database test; use test; /* 左表t1*/ drop table if exists t1; )); ,'t1a'); ,'t1b'); ,'t1c'); ,'t1d'); ,'t1f'); /* 右表 t2*/ drop table if exists t2; )); ,'t2b'); ,'t2c'); ,'t2d'); ,'t2f'); ,'…