数据准备: create table T1( A ) not null, B ) not null, C tinyint not null ); create table T2( B ) not null, E tinyint not null ); insert into T1 values (), (), (), (); insert into T2 values (), (), (), (), (); select * from T1; select * from T2; 结果: A B…